/* public/css/login.css */
body.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 3rem;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: scale(1.02);
}

.login-logo img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.login-title {
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-control-login {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    padding: 0.75rem 1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.form-control-login::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control-login:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    color: #fff;
}

.btn-login {
    background: #fff;
    color: #6a11cb;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.login-error-message {
    background: rgba(255, 82, 82, 0.7);
    color: #fff;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}