﻿/* ===== BODY BACKGROUND (Match Dashboard) ===== */
.auth-node-master {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a1a3a, #0f2c6b);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Soft Glow Background Effect */
.auth-visual-layer {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250,204,21,0.15), transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

/* ===== MAIN WRAPPER ===== */
.auth-main-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

/* ===== GLASS CARD ===== */
.auth-glass-box {
    background: rgba(15, 28, 63, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
}

/* ===== LOGO ===== */
.auth-logo {
    width: 70px;
    margin-bottom: 15px;
}

.auth-main-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.auth-line-divider {
    width: 60px;
    height: 3px;
    background: #3b82f6;
    margin: 0 auto 25px auto;
    border-radius: 5px;
}

/* ===== INPUT GROUP ===== */
.node-input-group {
    margin-bottom: 20px;
    text-align: left;
}

    .node-input-group label {
        font-size: 12px;
        color: #cbd5e1;
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
    }

/* Input Container */
.node-input-container {
    display: flex;
    align-items: center;
    background: #0d1f47;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0 12px;
    transition: 0.3s ease;
}

    .node-input-container:focus-within {
        border-color: #3b82f6;
        box-shadow: 0 0 10px rgba(250,204,21,0.2);
    }

    /* Icon */
    .node-input-container i {
        color: #3b82f6;
        font-size: 18px;
        margin-right: 8px;
    }

/* Input */
.node-input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 12px 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* ===== BUTTON ===== */
.btn-node-submit {
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #ffde59);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    color: #000;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(250,204,21,0.2);
}

    .btn-node-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 25px rgba(250,204,21,0.3);
    }

/* ===== FORGOT LINK ===== */
.node-link-forgot {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: none;
}

    .node-link-forgot:hover {
        color: #3b82f6;
    }

/* ===== ERROR MESSAGE ===== */
.node-status-error {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
}

/* ===== BOTTOM LINK ===== */
.auth-bottom-nav {
    margin-top: 20px;
    font-size: 12px;
    color: #cbd5e1;
}

    .auth-bottom-nav a {
        color: #3b82f6;
        font-weight: 600;
        text-decoration: none;
    }

        .auth-bottom-nav a:hover {
            text-decoration: underline;
        }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .auth-glass-box {
        padding: 30px 20px;
    }
}
