/* Login Page Layout */
.login-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Image Section */
.login-image {
    width: 45%;

    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 20px 0 20px 40px;
}

.login-image img {
    margin-top: 43px;
}

/* Form Section */
.login-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    background-color: #fff;
    max-width: 600px;
    margin: auto;
}

/* Password Input with Eye Icon */
.password-container {
    position: relative;
    margin: 23px 0 10px 0;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

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

.eye-icon:hover {
    color: var(--primary-color);
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 20px;
    right: 40px;
}

#language-dropdown {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    background: #eff1f1;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
}

.footer-text {
    font-size: 14px;
}

/* 🌟 Responsive Media Queries */

/* Tablet Screens */
@media screen and (max-width: 1023px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }

    .login-image {
        display: none;
    }

    .login-form {
        width: 100%;
        max-width: 600px;
        padding: 20px;
        height: 100vh;
    }
}

/* Mobile Screens */
@media screen and (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }

    .login-image {
        display: none;
    }

    .login-form {
        width: 100%;
        max-width: 400px;
        padding: 20px;
        height: 100vh;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .footer-logo img {
        margin-bottom: 10px;
    }

    .language-selector {
        top: 10px;
        right: 10px;
    }
}
.login-title {
    color: var(--header-color);
    font-size: 32px;
    font-weight: 700;
span {
    color: var(--primary-color);
}
margin-bottom: 16px;
}
.login-form-logo {
    margin-bottom: 44px;
}
.login-form-container {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    /* gap: 23px; */
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
input {
    height: 50px;
    padding: 16px;
    border-radius: 8px;
    background-color: #eff1f1;
    border: none;
    font-size: 16px;
    font-weight: 400;
}
}
.forgot-password {
    text-align: end;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 54px;
}
.btn {
    height: 45px;
    padding: 5px 48px;
    background-color: var(--primary-color);
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}
.divider {
    width: 90%;
    height: 1px;
    opacity: 0.2;
    background: #fff;
    margin: 24px 0 31px 0px;
}
.animation-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
