
body {
    background-color: #F6F6F6;
    margin: 0;
    font-family: Inter, Serif, serif;

}
.input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #777;
}

.eye-icon:hover {
    color: #333;
}

.login-container {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.login-container-register {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.left-content {
    flex: 1;
    display: flex;
    width: 60%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background: #F6F6F6;
    position: relative;
    z-index: 1;
    padding-left: 60px;

}

.left-content-img {
    display: flex;
    position: absolute;
    left: 120px;
    min-width: 100%;
    max-height: 600px;
    flex-direction: column;
    align-items: stretch;
    object-fit: cover;
    object-position: left top;
    gap: 10px;
    padding-left: 60px;
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.1);
    border-radius: 12px;
}


@media (max-width: 768px) {
    .left-content {
        display: none;
    }
}

.text-bold {
    font-weight: 600;
}

.p-m-b {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: black;
    line-height: 24px;
}

.right-content {
    min-width: 600px;
    flex-shrink: 0;
    display: flex;
    width: 40%;
    padding: 60px 60px 60px 32px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background: white;
    z-index: 2;

    @media (max-width: 768px){
        width: 100%;
        min-width: 0;
        display: flex;
        padding: 40px 16px 60px 16px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        align-self: stretch;
    }
}

.form-login {
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    padding: 60px 32px;
    align-self: stretch;

    @media(max-width: 768px){
        padding: 40px 16px 60px 16px;

    }

}
.form-login-create {
    display: flex;
    flex-direction: column;
    align-self: stretch;

    @media (max-width: 768px) {
        padding-top: 40px;
    }

}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px 0px 0px 12px;
    box-shadow: 0px 20px 25px -5px rgba(26, 28, 27, 0.10);
}


h1 {
    font-size: 20px;
    font-weight: bold;
}

.date {
    color: #6b7280;
    font-size: 14px;
}

.download-btn {
    margin-top: 15px;
    background-color: #facc15;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.description {
    margin-top: 20px;
    color: #374151;
    font-size: 14px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-instruction {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 60px;
    line-height: 24px;
    color: var(--odp-paragraph-secondary, #6B6B6B);

    @media (max-width: 768px){
        margin-bottom: 0;
    }

}

.login-btn {
    display: flex;
    width: 230px;
    height: 44px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    opacity: 0.5;
    text-decoration: none;
    border: 1px solid transparent;
    background: #FFD95F;
    box-shadow: 0 4px 4px 0 rgba(21, 27, 33, 0.05);
    transition: all 0.2s ease-in-out;
}
.login-btn:hover{
    border-radius:  30px;
    border: 1px solid var(--odp-400, #FFD95F);
    background: var(--odp-200, #FFF7DF);
    box-shadow: 0px 4px 4px 0px rgba(21, 27, 33, 0.05);
}

.login-btn:active{
    border-radius:  30px;
    background: var(--odp-yellow-darker, #D5AE2F);
    box-shadow: 0px 4px 4px 0px rgba(21, 27, 33, 0.05);
}


.login-title {
    color: var(--odp-title, #1A1C1B);
    margin-bottom: 0;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 16px;

    @media (max-width: 768px) {
        color: var(--odp-title, #1A1C1B);
        font-family: Inter;
        font-size: 24px;
        line-height: 29px;

    }
}

.sign-mess {
    color: var(--odp-paragraph-primary, #424242);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;

    }

.back-div{
    padding-bottom: 60px;

    @media(max-width: 768px){
        padding-bottom: 40px;
    }
}

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

label {
    color: #374151;
    font-size: 16px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    background-color: #fbbf24;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.resend-text {
    text-align: center;
    margin-top: 20px;
    color: #4b5563;
}

.resend-text a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.nav-head {
    display: flex;
    padding: 16px 60px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    background-color: white;
    border-bottom: 1px solid #EDEDED;
}

.nav-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.accessibility {
    display: flex;
    height: 44px;
    padding: 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    font-size: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4A4A4A;
}

.checkbox-label input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.forgot-password {
    font-size: 14px;
    color: #DAA520; /* Gold color */
    text-decoration: none;
}

.forgot-password:hover {
    color: #B8860B; /* Darker gold */
    text-decoration: underline;
}

.form-group-pass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.form-group-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 60px;
}

#header-logo {
    padding: 0;
}
