/* auth.css - Premium authentication page styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 380px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 30px;
    color: #fff;
}

.login-logo a {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.login-logo img {
    max-height: 60px;
    margin-right: 10px;
}

.login-box-body {
    background: transparent;
    border: none;
    padding: 0;
}

.form-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
}

.form-control::placeholder {
    color: #e0e0e0;
}

.btn-primary {
    background: #ff7e5f;
    border: none;
    width: 100%;
    padding: 10px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #feb47b;
}

.alert {
    background: rgba(255, 0, 0, 0.2);
    border: none;
    color: #ffdddd;
}

a.text-center {
    color: #fff;
    display: block;
    margin-top: 10px;
    text-decoration: underline;
}