* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7faff;
    color: #121212;
    scrollbar-width: thin;
    scrollbar-color: rgb(17,81,154) transparent;
    cursor: url(../assets/images/cursor.png), auto;
    font-family: "1", "sans-serif";
}

body, html {
    width: 100dvw;
    height: 100dvh;
}


@font-face {
    font-family: "3";
    src: url("../assets/fonts/ArialRoundedMTBold.woff");
}

@font-face {
    font-family: "1";
    src: url("../assets/fonts/Roboto-Regular.woff");
}

/*//////////////////////////////////////////////////////*/

body {
    display: flex;
    flex-direction: column;
}

header {
    z-index: 9999;
    box-shadow: 0 6px rgb(17,81,154) inset, 0 -2px 1px rgb(17,81,154) inset, 0 0 1rem #00000070;
    height: 5rem;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 2rem 3rem;
    a, a span{
        background-color: transparent;
        font-size: 2rem;
        text-decoration: none;
        font-family: "3", "sans-serif";
        cursor: url(../assets/images/pointer.png), auto;
    }
}

main {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    margin: 1.5rem 1rem;
    outline: 1px solid rgb(218, 220, 224);
    border-top: 8px solid #11519a;
    border-radius: 1rem;
}

form * {
    font-family: "Inter", sans-serif;
    background-color: rgb(255, 255, 255);
}

form div {
    padding: 1rem;
}

form div h2 {
    margin-bottom: 1rem;
}

form div p {
    line-height: 1.5;
}

input {
    margin: 2rem 0 1rem 0;
    outline: none;
    border: none;
    border-bottom: 1px solid rgb(218, 220, 224);
    padding: 4px 0;
    width: 100%;
    transition: border-bottom 0.2s ease-in-out;
}

input:focus {
    border-bottom: 1px solid #11519a;
}

textarea {
    margin: 2rem 0 0 0;
    outline: none;
    border: 1px solid rgb(218, 220, 224);
    padding: 8px;
    width: 100%;
    height: 5rem;
    border-radius: 6px;
    transition: border 0.2s ease-in-out;
}

textarea:focus {
    border: 1px solid #11519a;
}

button {
    outline: none;
    background-color: #3483dd;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight:600;
    transition: opacity 0.2s ease-in-out;
}

button:hover {
    opacity: 0.9;
    cursor: url(../assets/images/pointer.png), auto;
}

footer {
    text-align: center;
    padding: 5rem, 0;
    min-height: 3rem;
    align-content: center;
}

footer, footer a, footer p {
    background-color: #11519a;
    width: 100%;
    margin: 0;
    text-decoration: none;
    color: #dbe6fa;
    font-size: 0.9rem;
}

a:hover {
    cursor: url(../assets/images/pointer.png), auto;
}

.loader {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    animation: overlay 0.5s alternate infinite;
}

@keyframes overlay {
    0% {opacity: 0.7;}
    100% {opacity: 0.5;}
}
@-webkit-keyframes overlay {
    0% {opacity: 0.5;}
    100% {opacity: 0.3;}
}
/*///////////////////////////////////////////////////////////////////*/

@media only screen and (max-width:465px) {header {padding: 2rem 1.5rem;}}