body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    display: flex;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 950px;
    max-width: 95%;
}

.login-left {
    flex: 1;
    background: linear-gradient(145deg, #ff3c3c, #d93030);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

    .login-left img {
        width: 170px;
        margin-bottom: 1rem;
    }

    .login-left h2 {
        font-weight: 600;
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .login-left p {
        opacity: 0.9;
        font-size: 0.95rem;
    }

.login-right {
    flex: 1;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-right h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #333;
    }

.form-control {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

    .form-control:focus {
        border-color: #d93030;
        box-shadow: 0 0 0 0.2rem rgba(217,48,48,0.25);
    }

.btn-login {
    background-color: #d93030;
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    padding: 0.75rem;
    transition: 0.3s;
}

    .btn-login:hover {
        background-color: #b92020;
        transform: translateY(-1px);
    }

.forgot-password {
    text-decoration: none;
    color: #d93030;
    font-size: 0.9rem;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.form-check-label {
    color: #555;
}

@media (max-width: 768px) {
    .login-left {
        display: none;
    }

    .login-wrapper {
        max-width: 420px;
        width: 95%;
    }

    .login-right {
        padding: 2.5rem;
    }
}
