/* =========================
   AUTH BASE (DESKTOP)
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;

    /* Modern gradient */
    /*background: linear-gradient(135deg, #020617, #0f172a, #020617);
}*/

body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;

    background: 
        linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.75)),
        url("../images/auth-bg.jpg") center/cover no-repeat;
}

.auth-box {
    width: 380px;
    /*background: #0a8bf5;*/
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 22px;
    font-weight: 600;
}

.auth-box input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #e5e7eb;
    outline: none;
}

.auth-box button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #020617;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.auth-box a {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
}

.error-msg {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
}

/* Password toggle */
.password-box {
    position: relative;
}

.password-box input {
    padding-right: 40px;
}

.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
}
