/* ---------------------------------------------------------
   SnokuOS Auth — Cinematic Login Styling
   Uses real background image + Snoku-2 logo
--------------------------------------------------------- */

/* Fullscreen background */
.snoku-auth {
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    /* Load your uploaded background image */
    background: url('/assets/images/login-bg.jpg') center/cover no-repeat fixed;
}

/* Wrapper for centering */
.auth-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login card */
.auth-card {
    width: 380px;
    padding: 32px 32px 24px;
    border-radius: 18px;

    /* Cinematic glass effect */
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(12px);

    /* SnokuOS shadow */
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);

    /* Subtle border */
    border: 1px solid rgba(255, 255, 255, 0.04);

    color: #f5f5f5;
}

/* Logo */
.auth-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Inner content */
.auth-card-inner {
    width: 100%;
}

/* Titles */
.auth-title {
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    opacity: 0.8;
    margin-bottom: 25px;
    text-align: center;
}

/* Form fields */
.auth-field {
    margin-bottom: 20px;
}

.auth-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.auth-field input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* Button */
.auth-btn {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.auth-btn:hover {
    background: #000;
}

/* Error message */
.auth-error {
    background: #e74c3c;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

/* Links */
.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-link {
    display: block;
    color: #66fcf1;
    font-size: 13px;
    text-decoration: none;
    margin-top: 6px;
}

