﻿/* =====================================================
   DREAMLINE PREMIUM LOGIN - 2026 VERSION
===================================================== */

body.auth-node-master {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg,#4f46e5,#2563eb,#06b6d4);
    min-height: 100vh;
    overflow: hidden;
}


/* ================= BACKGROUND ANIMATION ================= */

.auth-visual-layer {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 40%);
    animation: floatBg 12s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% {
        transform: scale(1) translateY(0px);
    }

    100% {
        transform: scale(1.05) translateY(-20px);
    }
}


/* ================= CENTER WRAPPER ================= */

.auth-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}


/* ================= GLASS CARD ================= */

.auth-glass-box {
    width: 420px;
    padding: 45px 40px;
    border-radius: 28px;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}


/* ================= BRAND AREA ================= */

.auth-logo {
    height: 100px;
    margin-bottom: 15px;
}

.auth-main-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.auth-line-divider {
    width: 60px;
    height: 3px;
    margin: 15px auto 30px;
    background: linear-gradient(90deg,#6366f1,#06b6d4);
    border-radius: 10px;
}


/* ================= FORM ================= */

.auth-form-node {
    text-align: left;
}

.node-input-group {
    margin-bottom: 25px;
}

    .node-input-group label {
        font-size: 12px;
        font-weight: 600;
        color: #94a3b8;
        margin-bottom: 8px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


/* ================= INPUT FIELD ================= */

.node-input-container {
    display: flex;
    align-items: center;
    background: #1e293b;
    border-radius: 14px;
    padding: 0 15px;
    border: 1px solid #334155;
    transition: 0.3s ease;
}

    .node-input-container i {
        color: #3b82f6;
        font-size: 18px;
        margin-right: 10px;
    }

.node-input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 14px 0;
    width: 100%;
    font-size: 14px;
    outline: none;
    font-weight: 600;
}

.node-input-container:focus-within {
    border-color: #06b6d4;
    box-shadow: 0 0 18px rgba(6,182,212,0.4);
}


/* ================= FORGOT LINK ================= */

.node-link-forgot {
    font-size: 11px;
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
}

    .node-link-forgot:hover {
        color: #ffffff;
    }


/* ================= BUTTON ================= */

.node-action-container {
    margin-top: 30px;
}

.btn-node-submit {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(90deg,#6366f1,#3b82f6,#06b6d4);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

    .btn-node-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(59,130,246,0.5);
    }


/* ================= ERROR MESSAGE ================= */

.node-status-error {
    font-size: 13px;
    color: #f87171;
    font-weight: 600;
}


/* ================= BOTTOM LINK ================= */

.auth-bottom-nav {
    margin-top: 30px;
    font-size: 13px;
    color: #94a3b8;
}

    .auth-bottom-nav a {
        color: #06b6d4;
        font-weight: 700;
        text-decoration: none;
    }

        .auth-bottom-nav a:hover {
            color: #ffffff;
        }


/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {
    .auth-glass-box {
        width: 100%;
        padding: 35px 25px;
    }
}
