body {
    background: linear-gradient(to right, #28a745, #ced4da);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Arial', sans-serif;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo img {
    width: 15rem;
    
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0px 0px 8px rgba(40, 167, 69, 0.5);
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-success:hover {
    background-color: #218838;
}

.alert {
    border-radius: 8px;
    font-size: 0.9rem;
}
