/* Auth Styling - Nexora Inspired */
:root {
    --auth-bg: #030305;
    --auth-panel-bg: rgba(12, 12, 20, 0.7);
    --auth-border: rgba(255, 255, 255, 0.05);
    --auth-text-muted: rgba(136, 136, 136, 0.6);
    --auth-accent: #3b82f6;
}

.auth-page {
    background-color: var(--auth-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-header-logo {
    margin-bottom: 50px;
    text-align: center;
}

.auth-header-logo .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
}

.auth-header-logo .logo i {
    color: var(--primary);
}

.auth-title-section {
    text-align: center;
    margin-bottom: 40px;
}

.auth-title-section h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 15px;
    color: #ffffff;
}

.auth-title-section h1 span {
    font-style: italic;
    font-weight: 400;
    opacity: 0.8;
}

.auth-title-section p {
    color: var(--auth-text-muted);
    font-size: 1.1rem;
}

/* Terminal Box Style */
.auth-box {
    width: 100%;
    max-width: 480px;
    background: var(--auth-panel-bg);
    border: 1px solid var(--auth-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
}

.auth-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--auth-border);
}

.auth-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.auth-header-text {
    font-family: var(--dx-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--auth-text-muted);
    text-transform: uppercase;
}

.auth-secure-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--dx-mono);
    font-size: 10px;
    color: #28c840;
    letter-spacing: 1px;
}

.auth-secure-status .pulse-dot {
    width: 6px;
    height: 6px;
    background: #28c840;
    border-radius: 50%;
    box-shadow: 0 0 10px #28c840;
}

.auth-box-content {
    padding: 40px;
}

.auth-group {
    margin-bottom: 25px;
}

.auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.auth-label {
    font-family: var(--dx-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--auth-text-muted);
    text-transform: uppercase;
}

.auth-link {
    font-family: var(--dx-mono);
    font-size: 10px;
    color: var(--auth-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #ffffff;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--auth-border);
    border-radius: 8px;
    padding: 16px 20px;
    color: #ffffff;
    font-family: var(--dx-mono);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.auth-input:focus {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.1);
}

.auth-submit-btn {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    color: var(--auth-text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--auth-accent);
    text-decoration: none;
    margin-left: 5px;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Corner Accents */
.auth-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(255, 255, 255, 0.1);
    border-style: solid;
    pointer-events: none;
}

.auth-corner.tl { top: 15px; left: 15px; border-width: 1px 0 0 1px; }
.auth-corner.tr { top: 15px; right: 15px; border-width: 1px 1px 0 0; }
.auth-corner.bl { bottom: 15px; left: 15px; border-width: 0 0 1px 1px; }
.auth-corner.br { bottom: 15px; right: 15px; border-width: 0 1px 1px 0; }
