@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

.login-container {
    display: flex;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.login-info {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    padding: 60px 40px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-info h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.login-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.login-form {
    padding: 60px 40px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.login-form .form-label {
    font-weight: 500;
    color: #555;
}

.login-form .form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.login-form .btn-primary {
    background: #0d6efd;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.login-form .btn-primary:hover {
    background: #0b5ed7;
}

.login-form .form-check-label {
    color: #555;
}

.alert {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 400px;
    }
    .login-info, .login-form {
        width: 100%;
    }
}