/* Global Styles */
* {
    box-sizing: border-box;
}
    /* background-color: #f0f2f5; */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #fffcf5;
    color: #333;
}

/* Login Container */
.login-container {
    display: flex;
    min-height: 100vh;
}

/* Login Form Section */
.login-form {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form .logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #fd9644;
    text-decoration: none;
    margin-bottom: 2rem;
}

.login-form h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-form p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.login-form form {
    width: 100%;
    max-width: 400px;
}

.login-form form input[type="text"],
.login-form form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.login-form form input:focus {
    border-color: #fd9644;
    outline: none;
}

.login-form form button {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #fd9644;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.login-form form button:hover {
    background-color: #e86c10;
}

.forgot-password,
.signup-prompt,
.back-home {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.forgot-password a,
.signup-prompt a,
.back-home a {
    color: #fd9644;
    text-decoration: none;
}

.forgot-password a:hover,
.signup-prompt a:hover,
.back-home a:hover {
    text-decoration: underline;
}

.back-home {
    margin-top: 2rem;
}

.back-home a i {
    margin-right: 0.5rem;
}

/* Login Banner Section */
/* .login-banner {
    flex: 1;
    background: url('{% static "images/login-banner.jpg" %}') no-repeat center center/cover;
    position: relative;
    display: none;
}

.login-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 32, 39, 0.6);
}

.login-banner .banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.login-banner .banner-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: slideInDown 1s ease-out;
}

.login-banner .banner-content p {
    font-size: 1.2rem;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
} */


.login-banner {
    position: relative;
    flex: 1;
    background: url('/static/images/login_banner.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f9fcff;
    text-align: center;
    padding: 40px;
    border-radius: 0 12px 12px 0;
}

.login-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(255 255 255 / 0%); dark overlay for readability rgb(255 255 255 / 0%); */
    background: rgb(255 255 255 / 0%); /* dark overlay for readability rgb(255 255 255 / 0%);*/
    border-radius: 0 12px 12px 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    font-family: 'Roboto', sans-serif;
}

.banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff9800;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.6;
}


/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .login-form {
        flex: 1;
        padding: 4rem;
    }

    .login-banner {
        display: block;
    }
}
