:root {
    color-scheme: only light;
  }

body {
    margin: 0;
    background-color: #F6F7F8 !important;
    font-family: 'Inter', sans-serif!important;
}

body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: white;        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: darkgray;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid darkgray;  /* creates padding around scroll thumb */
  }

.login_section {
    display: flex;
    width: 100vw;
    flex-direction: column;
    padding: 48px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    animation: fadeIn 1.7s;
}

.mobile-header {
    display: none;
    animation: fadeIn 1.7s;
}

.header img {
    width: 100px;
}

.registry {
    background: none;
    border: none;
    margin-right: 24px;
}

.registry:hover {
    scale: 1.05;
    transition: all 75ms ease-in-out;
}

.sign_up {
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    background-color: #2A3647;
    border: none;
    color: white;
    padding: 16px;
}

.login_window {
    background-color: white;
    width: 652px;
    height: 513px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    transform: translate(-50%, -50%);
    animation: fadeIn 1.7s;
}

.login_window h1 {
    margin: 48px;
    font-weight: 700;
    font-size: 61px;
}

.signup_window {
    background-color: white;
    width: 652px;
    height: 559px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    transform: translate(-50%, -50%);
    animation: fadeIn 1.7s;
}

.signup_window h1 {
    margin-top: 24px;
    font-weight: 700;
    font-size: 61px;
}

.forgot_window {
    background-color: white;
    width: 826px;
    height: 462px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    transform: translate(-50%, -50%);
    animation: fadeIn 1.7s;
}

.forgot_window h1 {
    margin-top: 24px;
    font-weight: 700;
    font-size: 61px;
}

.reset_window {
    background-color: white;
    width: 826px;
    height: 537px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    transform: translate(-50%, -50%);
    animation: fadeIn 1.7s;
}

.reset_window h1 {
    margin-top: 24px;
    font-weight: 700;
    font-size: 61px;
}

.login_input {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input_fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input_email {
    height: 51px;
    border: 1px solid black;
    width: 100%;
    height: 51px;
    padding: 13px 21px 13px 21px;
    color: #D1D1D1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.input_email input {
    width: 100%;
    outline: none;
    font-size: 21px;
}

.input_email img {
    height: 18px;
}

.input_email input {
    border: none;
}

.input_password,
.input_confirm_password {
    height: 51px;
    border: 1px solid black;
    width: 100%;
    height: 51px;
    padding: 13px 21px 13px 21px;
    color: #D1D1D1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.input_password input,
.input_confirm_password input {
    width: 100%;
    outline: none;
    font-size: 21px;
    border: none;
}

.input_name {
    height: 51px;
    border: 1px solid black;
    margin-top: 59px;
    width: 422px;
    height: 51px;
    padding: 13px 21px 13px 21px;
    color: #D1D1D1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.input_name input {
    width: 422px;
    outline: none;
    font-size: 21px;
    border: none;
}

.checkbox {
    gap: 50px;
    display: flex;
    justify-content: space-between;
    margin: 30px 0px 30px 0px;
}

.checkbox span {
    width: 154px;
    height: 19px;
}

.forgot_password_link {
    text-decoration: none;
}

.forgot_password {
    color: #29ABE2;
    cursor: pointer;
}

.login_buttons {
    gap: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.login_button {
    width: 145px;
    font-weight: 700;
    height: 51px;
    border-radius: 8px;
    padding: 4px 0px 4px 0px;
    background-color: #2A3647;
    color: white;
    font-size: 25px;
}

.signup_container,
.continue_container {
    font-weight: 700;
    width: 264px;
    height: 51px;
    border-radius: 8px;
    background-color: #2A3647;
    color: white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    margin: 36px;
}

.signup_button,
.forgot_button,
.continue_button {
    width: 264px;
    font-weight: 700;
    height: 51px;
    border-radius: 8px;
    padding: 4px 0px 4px 0px;
    background-color: #2A3647;
    color: white;
    font-size: 25px;
}

.signup_button:hover,
.sign_up:hover,
.forgot_button:hover,
.continue_button:hover,
.login_button:hover,
.guest_login_button:hover {
    background-color: #29ABE2;
    transition: all 125ms ease-in-out;
    outline: none;
}

.forgot_button {
    width: 264px;
}

.guest_login_button {
    height: 51px;
    font-weight: 700;
    border-radius: 8px;
    padding: 4px 13px 4px 13px;
    font-size: 25px;
    color: #2A3647;
    background-color: white;
    border: 2px solid #2A3647;
}

.go_back_to_login {
    position: absolute;
    left: 24px;
    top: 24px;
    cursor: pointer;
}

.go_back_to_login a img {
    height: 24px;
}

.go_back_to_login a img:hover {
    transform: scale(1.1);
    transition: all 75ms ease-in-out;
}

.no_panic {
    text-align: center;
    margin: 36px;
}

.forgot_password_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrong_login {
    padding: 20px;
    color: red;
    font-size: .8rem;
}

.disabled {
    background-color: gray;
    color: black;
    border: solid 1px black;
}

.blur_container {
    transition: all 225ms;
}

.active_menu {
    background-color: #091931;
}


/* ---------------------- MEDIA QUERYS ---------------------- */


/* ---------------------- Index Start ---------------------- */

@media (max-width: 1200px) {
    .login_window {
        width: 552px;
    }
}

@media (max-width: 992px) {
    .header {
        display: none;
    }
    .mobile-header {
        display: block;
        position: absolute;
        bottom: -80px;
        right: 50%;
        transform: translate(50%, 0);
    }
    .registry {
        margin: 0;
    }
    .login_window {
        margin-top: 20px;
    }
    .login_window h1 {
        font-size: 50px;
    }
    .signup_window {
        margin-top: 64px;
    }
    .forgot_window {
        width: 700px;
    }
    .forgot_window h1 {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .signup_window {
        width: 500px;
    }
    .forgot_window {
        width: 550px;
    }
    .forgot_window h1 {
        font-size: 50px;
    }
}

@media (max-height: 768px) {
    .input_email {
        margin-top: 0;
    }
    .input_name {
        margin-top: 0;
    }
    .forgot_window {
        height: unset;
    }
    .signup_window {
        height: unset;
        padding: 20px 0;
        margin-top: 10px !important;
    }
    .login_window {
        height: unset;
        padding: 20px 0;
    }
    .signup_window h1 {
        margin-top: 32px !important;
        font-size: 50px;
    }
    .signup_container {
        margin: 24px;
    }
}

@media (max-width: 600px) {
    .login_window {
        width: 372px;
    }
    .signup_window {
        width: 372px;
    }
    .forgot_window {
        width: 372px;
    }
    .forgot_window h1 {
        font-size: 32px;
    }
    .input_name {
        width: 350px;
    }
    .input_name input {
        width: 300px;
    }
    .mobile-header {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .input_fields {
        width: 330px;
    }
}

@media (max-width: 450px) {
    .login_window {
        width: 322px;
    }
    .signup_window {
        width: 322px;
    }
    .forgot_window {
        width: 322px;
    }
    .forgot_window h1 {
        font-size: 29px;
    }
    .input_name {
        width: 300px;
        margin-top: 32px;
    }
    .input_name input {
        width: 250px;
    }
    .mobile-header {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .checkbox {
        gap: 12px;
    }
    .login_button {
        width: 111px;
    }
    .signup_window h1 {
        margin-top: 50px;
    }
    .input_fields {
        width: 300px;
    }
}

@media (max-width: 360px) {
    .login_window h1 {
        margin-top: 12px;
    }
    .forgot_window h1 {
        font-size: 24px;
    }
    .login_window {
        width: 260px;
        margin-top: 0;
    }
    .forgot_window {
        width: 260px;
        margin-top: 0;
    }
    .signup_window {
        width: 260px;
        margin-top: 0;
    }
    .input_name {
        width: 230px;
    }
    .input_name input {
        width: 130px;
    }
    .checkbox {
        flex-direction: column;
    }
    .login_buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }
    .login_buttons button {
        width: 100%;
    }
    .login_window h1 {
        margin-top: 0;
    }
    .login_window {
        padding: 10px 0;
    }
    .checkbox {
        gap: 8px;
        margin: 20px 0;
    }
    .signup_container,
    .continue_container {
        width: 230px;
    }
    .forgot_button {
        font-size: 18px;
    }
    .input_fields {
        width: 180px;
    }
}


/* ---------------------- Index End ---------------------- */