html {
    overflow-x: hidden;
    height: auto;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: rgba(246, 247, 248, 1);
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;

}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf');
}

h1,
h2,
h3,
h5 {
    color: #333;
}

footer {
    height: 80px;
    max-width: 100%;
    background-color: rgba(246, 247, 248, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.legal_privacy_div{
    display: flex;
    gap: 32px;
    width: 100%;
    justify-content: center;
}

.legal_privacy_div a {
    text-decoration: none;
    color: rgb(168, 168, 168);
    transform: scale(1);
    cursor: pointer; 
}

.legal_privacy_div a:hover {
    text-decoration: none;
    color: rgb(41, 171, 226);
    transform: scale(1.05);
}

.right_header_section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 32px;
}

.sign_up_button_header {
    background-color: rgb(42, 54, 71);
    border-radius: 10px;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 100ms ease-in-out, 
                box-shadow  100ms ease-in-out;
}

.header_button_a {
    text-decoration: none;
}

.sign_up_button_header:hover {
    background-color: rgb(41, 171, 226);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.sign_up_button_header:active{
    background-color: rgba(9, 25, 49, 1);
    box-shadow: none;
}


header {
    height: 130px;
    max-width: 100%;
    background-color: rgba(246, 247, 248, 1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding: 32px 56px 0 56px;
    overflow-x: hidden;
}

.main_content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 32px 0;
}

.logo_header {
    width: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: 20px;
    margin-left: 40px;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    animation: logoMove 1.5s ease forwards;
    z-index: 10000;
}

.right_header_section {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    top: 32px;
    right: 56px;
}

@keyframes logoMove {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }

    10% {
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

.log_in_box {
    height: 449px;
    width: 652px;
    max-height: 449px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0px 0px 4px 2px rgba(42, 54, 71, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
    padding: 40px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.log_in_box::-webkit-scrollbar {
    display: none;
}

.h1_box {
    font-size: 72px;
    font-weight: 700;
    text-align: center;
    color: rgb(42, 54, 71);
    margin-block-start: 0;
    margin-block-end: 0;
}

.h1_div_log_in_field {
    min-height: fit-content;
    width: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.input_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 326px;
    width: 422px;
}

.input_div input {
    width: 422px;
    height: 48px;
    border: rgb(209, 209, 209) solid 1px;
    border-radius: 10px;
    padding-left: 16px;
}

.input_icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.input_icon img {
    width: 100%;
    height: 100%;
}

.button_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 32px
}

.separation_line_h1 {
    height: 3px;
    width: 150px;
    background-color: rgb(41, 171, 226);
    border-radius: 50px;
}

.button_log_in_input_section {
    background-color: rgb(42, 54, 71);
    border: solid 2px rgb(42, 54, 71);
    border-radius: 10px;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    transform: scale(1);
    font-weight: 600;
    width: 110px;
    height: 48px;
    font-size: 21px;
    font-weight: 700;
    transition: background-color 100ms ease-in-out,
                border 100ms ease-in-out,
                box-shadow 100ms ease-in-out;
}

.button_log_in_input_section:hover {
    background-color: rgba(41, 171, 226, 1);
    border: solid 2px rgba(41, 171, 226, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.button_log_in_input_section:active{
    background-color: rgba(9, 25, 49, 1);
    border: solid 2px rgba(9, 25, 49, 1);
    box-shadow: none;
}

.button_sign_up_input_section {
    border: solid 2px rgb(42, 54, 71);
    border-radius: 10px;
    height: 48px;
    color: rgb(42, 54, 71);
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transform: scale(1);
    font-size: 21px;
    font-weight: 700;
    transition: border 100ms ease-in-out,
                color 100ms ease-in-out,
                box-shadow 100ms ease-in-out;
}

.button_sign_up_input_section:hover {
    border: solid 2px rgba(41, 171, 226, 1);
    color: rgba(41, 171, 226, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.button_sign_up_input_section:active{
    border: solid 2px rgba(9, 25, 49, 1);
    color: rgba(9, 25, 49, 1);
    box-shadow: none;
    }

a {
    text-decoration: none;
}

.button_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100% !important;
}

#toggle_icon {
    cursor: pointer;
}

.input_label {
    position: relative;
    display: flex;
    align-items: center;
    width: 422px;
}

.input_label input {
    width: 100%;
    padding-right: 40px;
    font-size: 16px;
    height: 48px;
}

.input_label input::placeholder {
    font-size: 18px;
    color: rgb(209, 209, 209);
}

.input_label input:focus,
.input_label input:not(:placeholder-shown) {
    border-color: rgb(41, 171, 226);
    border: 1px solid rgb(41, 171, 226);
    outline: none;
}

.forgot_password_div a {
    color: rgb(41, 171, 226);
    transition: text-decoration 100ms ease-in-out;
}

.forgot_password_div a:hover {
    text-decoration: underline;
}

.forgot_password_div {
    min-height: 24px;      
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
    transition: min-height 0.2s;
}

.d_none_forgot_password-div {
    visibility: hidden;
}

.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
}

.loading-spinner img {
    width: 200px;
    height: auto;
    transform-origin: center center;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.d_none_footer {
    display: none;
}


.sign_up_button_footer_mobile {
    background-color: rgb(42, 54, 71);
    border-radius: 10px;
    color: white;
    padding: 8px 8px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 16px;
    transition: background-color 100ms ease-in-out,
                box-shadow 100ms ease-in-out;
}


.sign_up_button_footer_mobile:hover {
    background-color: rgba(41, 171, 226, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.sign_up_button_footer_mobile:active{
    background-color: rgba(9, 25, 49, 1);
    box-shadow: none;
}

.sign_up_div_footer_mobile p {
    font-size: 12px !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d_none_blue_loading_screen{
    display: none;
}

.error-message{
    display: block;
    height: 24px;
}

#blue_loading_screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgb(42, 54, 71);
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

#blue_loading_screen.visible {
    opacity: 1;
}

#blue_loading_screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.page_content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page_content.visible {
  display: block;
  opacity: 1;
}