* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
}

a {
    text-decoration: none;
}

/* 
neutral = #7F7F7F 
theme = #1941D2
*/

body {
    background-color: #1941D2;
}

.my-navbar {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.white {
    background-color: #ffffff;
}

.my-link {
    color: #fff;
    font-weight: bold;
}

.my-navbar .my-content {
    height: 100%;
    min-height: 10px;
    padding: 0px;
    flex-direction: row;
    justify-content: space-between;
}

.my-brand-image {
    max-height: 35px;
}

.my-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.my-content {
    display: flex;
    width: 90%;
    min-height: calc(100vh - 80px);
    max-width: 1260px;
    padding: 50px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 70px;
    background-color: #fff;
    border-radius: 20px;
}

.my-hero-image {
    max-width: 120px;
}

.my-cta-box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.my-headline {
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

.my-subheadline {
    font-size: 16px;
    color: #7F7F7F;
}

.my-cta {
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background: #1941D2;
    text-decoration: none;
    text-align: center;
}

/* Auth */
.my-auth-box {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 30px;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    border-radius: 20px;
    background-color: #fff;
}

.my-form-group {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.my-form-group label {
    font-weight: bold;
}

.my-form-group .my-input-control {
    height: 50px;
    padding: .5rem;
    border: none;
    border-bottom: 2px solid #DFDFF9;
}

.my-auth-buttons {
    display: flex;
    width: 100%;
    margin-top: 40px;
    justify-content: space-between;
}

.my-auth-button {
    display: flex;
    width: 49%;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    font-weight: bold;
}

.my-auth-button.primary {
    background-color: #1941D2;
    color: #ffffff;
}

.my-auth-button.secondary {
    background-color: #1941D233;
    color: #1941D2;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.modal-content {
    overflow-x: hidden;
    width: 80%;
    max-width: 400px;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 15px;
    border: 1px solid #888;
    border-radius: 10px;
}

.modal-row {
    display: flex;
    white-space: nowrap;
    align-items: center;
    transition: .4s;
}

.modal-row .my-auth-box {
    width: 100%;
    min-width: 100%;
    margin: auto;
    gap: 10px;
    transition: .7s;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Snackbar */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.snackbar.success {
    background-color: #3CB371;
}

.snackbar.error {
    background-color: #DC143C;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .my-auth-box {
        width: 400px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {


    .my-hero-image {
        max-width: 250px;
    }

    .my-cta-box {
        gap: 30px;
    }

    .my-headline {
        font-size: 64px;
    }

    .my-subheadline {
        font-size: 24px;
    }

    .my-cta {
        padding: 15px 30px;
        font-size: 18px;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .my-auth-box {
        width: 50%;
        max-width: 500px;
    }
}