/* master */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

:root {
    --primary: rgb(117, 69, 155);
    --light_primary: rgb(139, 113, 161);
    --dark_primary: rgb(94, 39, 135);
    --gray: rgb(238, 238, 238);
    --dark_gray: rgb(224, 224, 224);
    --alert: rgb(230, 95, 95);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*border: 1px gray solid;*/
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: black;
    background: rgb(255, 255, 255);
    overflow-x: hidden;
}

a {
    color: black;
    text-decoration: none;
}

a[href^=tel] {
    text-decoration: inherit;
    color: inherit;
}

form {
    width: 100%;
}

input {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    background: white;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

input:focus {
    border: 1px var(--primary) solid;
    outline: none;
}

textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    border: none;
    border-radius: 1rem;
    resize: none;
    padding: 1rem;
    width: 99%;
}

select {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    background: white;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1rem;
    width: 100%;
}

select:focus {
    border: 1px var(--primary) solid;
    outline: none;
}

select option {
    font-weight: 300;
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(to top, var(--primary), var(--light_primary)) !important;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    transition: 0.35s;
}

button:hover {
    color: white;
    background: linear-gradient(to top, var(--primary), var(--dark_primary)) !important;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

b {
    color: var(--primary);
    font-weight: 300;
}

th {
    font-size: 1rem;
    color: white;
    font-weight: 300;
    background: var(--primary);
    border: 1px white solid;
    padding: 0.5rem;
}

td {
    font-size: 1rem;
    font-weight: 300;
    border: 1px var(--dark_gray) solid;
    padding: 0.5rem;
    width: 1rem;
}

tr:nth-child(even) {
    background-color: var(--gray);
}

/* text */

h1 {
    font-size: 2rem;
    font-weight: 300;
}

h2 {
    font-size: 1.25rem;
    font-weight: 300;
}

h3 {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 300;
}

p {
    font-size: 1rem;
    font-weight: 300;
}

/* container */

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: inherit;
    min-height: 75vh;
    width: 100%;
}

.alert .title {
    color: white !important;
    background: var(--dark_primary) !important;
    border-radius: 2rem;
    margin: 4rem;
}

.container .title {
    color: var(--primary);
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.container .title a {
    font-size: 1rem;
    color: var(--primary);
    border-bottom: 1px var(--primary) solid;
    transition: 0.5s;
}

.container .title a:hover {
    color: var(--secondary);
}

/* tools */

.padding {
    padding: 0 8rem;
}

.pointer {
    cursor: pointer;
}

.flex {
    display: flex !important;
}

.hidden {
    display: none !important;
}

.box_shadow {
    box-shadow: 0 2px 6px 0 rgba(39, 39, 39, 0.25);
    transition: 0.25s;
}

.highlight {
    background: var(--gray);
    border-radius: 0.5rem;
    padding: 0.25rem;

}

.signature {
    font-family: "Parisienne", cursive !important;
    font-size: 2rem;
}

.spacer {
    height: 2rem;
    width: 100%;
}

.spacer_alt {
    height: 5rem;
    width: 100%;
}

.third_width {
    width: 32% !important;
}

.full_width {
    width: 99% !important;
}

.button {
    color: white !important;
    background: linear-gradient(to top, var(--primary), var(--light_primary)) !important;
    transition: 0.5s;
}

.button:hover {
    background: linear-gradient(to top, var(--primary), var(--dark_primary)) !important;
    transform: translateY(-2px);
}

.submit {
    text-align: center;
    padding: 1.5rem 1rem !important;
    margin: 1rem 0; 
}

.late_entry {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.late_entry input {
    width: 20%;
}

.page_break {
    page-break-before: always;
}