body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    height: 60%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.image-section {
    flex: 1;
    background: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.image-section .logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.login-section {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 2rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h1 {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    color: #333;
}

.login-box p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 0.25rem;
}

.input-group input {
    width: -webkit-fill-available;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: #1f1f1f;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

button:hover {
    background: #3b3b3b;
}

.forgot-password {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.forgot-password a {
    color: #1f1f1f;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
