body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0f;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: white;
}

.form-control {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: white;
    padding: 16px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .6);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(90deg, #ff2e63, #ff6b00);
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-weight: 600;
}

.logo {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-text {
    opacity: .7;
    font-size: 14px;
}
