:root {
    --primary-color: #24209C;
    --input-bg: rgba(255, 255, 255, 0.1);
    --text-color: #fff;
}

body {
    background-color: white !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Left Image Section */
.hello {
    background-image: url('../images/login.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Login Form Styling */
.login-form-container {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 1rem;
    background-color: rgba(36, 32, 156, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    color: var(--text-color);
}

h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-label {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.custom-input {
    background-color: var(--input-bg);
    border: none;
    border-radius: 20px;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    height: 40px;
    font-size: 0.9rem;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.custom-input:focus {
    background-color: var(--input-bg);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
}

.btn-login {
    background-color: #fff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    height: 42px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.forget-link,
.register-link {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.9;
}

.alert {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hello {
        height: 40vh;
    }

    .login-form-container {
        padding: 0.75rem;
        max-width: 100%;
        margin: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .custom-input, .btn-login {
        height: 38px;
        font-size: 0.85rem;
    }
}
