/* Custom SkyNet Authentication Layout Stylesheet */

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0b0f19;
}

.auth-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* Custom Premium Navbar */
.auth-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: 85px;
    padding: 0 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link-btn {
    color: #333333;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link-btn:hover {
    color: #ff1e27;
}

.nav-link-btn.active {
    color: #ffffff;
    background-color: #ff1e27;
}

/* Page Background & Content */
.auth-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(11, 15, 25, 0.8), rgba(11, 15, 25, 0.85)), url('../images/skynet_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    position: relative;
}

/* Glassmorphic Form Card */
.auth-card {
    background: rgba(15, 22, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.auth-card-title {
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-card-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Form Controls */
.form-group-custom {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label-custom {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-container {
    position: relative;
}

.form-input-custom {
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input-custom:focus {
    outline: none;
    border-color: #ff1e27;
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 30, 39, 0.25);
}

/* Password Toggle Icon */
.password-toggle-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.password-toggle-icon:hover {
    color: #ff1e27;
}

/* Dividers & Buttons */
.auth-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    position: relative;
    text-align: center;
}

.auth-divider::before {
    content: 'OR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0f162a;
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-skynet-primary {
    width: 100%;
    background: linear-gradient(135deg, #ff1e27 0%, #d30008 100%);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 30, 39, 0.3);
}

.btn-skynet-primary:hover {
    background: linear-gradient(135deg, #ff3d44 0%, #e6000a 100%);
    box-shadow: 0 6px 16px rgba(255, 30, 39, 0.45);
    transform: translateY(-1px);
}

.btn-skynet-primary:active {
    transform: translateY(0);
}

.btn-skynet-secondary {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-skynet-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.forgot-password-link {
    display: inline-block;
    color: #ff1e27;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.forgot-password-link:hover {
    color: #ff5c62;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-card {
    animation: fadeIn 0.5s ease forwards;
}

/* SkyPoint Online Theme overrides */
:root {
    --skypoint-primary: #006bb7;
    --skypoint-primary-hover: #005a9c;
    --skypoint-accent: #00a2e8;
    --skypoint-accent-glow: rgba(0, 162, 232, 0.25);
    --skypoint-card-bg: rgba(10, 28, 58, 0.85);
    --skypoint-border: rgba(0, 162, 232, 0.15);
}

.skypoint-card {
    background: var(--skypoint-card-bg) !important;
    border: 1px solid var(--skypoint-border) !important;
    box-shadow: 0 20px 45px rgba(0, 107, 183, 0.15) !important;
}

.skypoint-title {
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.skypoint-subtitle {
    color: #a5bdf2 !important;
}

.btn-skypoint-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--skypoint-primary) 0%, #004d85 100%);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 107, 183, 0.3);
}

.btn-skypoint-primary:hover {
    background: linear-gradient(135deg, var(--skypoint-primary-hover) 0%, #003a64 100%);
    box-shadow: 0 6px 20px rgba(0, 107, 183, 0.45);
    transform: translateY(-1px);
}

.btn-skypoint-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-input-skypoint {
    width: 100%;
    background: rgba(15, 32, 66, 0.6);
    border: 1px solid rgba(0, 162, 232, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input-skypoint:focus {
    outline: none;
    border-color: var(--skypoint-accent);
    background: rgba(15, 32, 66, 0.9);
    box-shadow: 0 0 0 3px var(--skypoint-accent-glow);
}

.password-toggle-skypoint {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #8fa0c4;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.password-toggle-skypoint:hover {
    color: var(--skypoint-accent);
}

.divider-skypoint {
    border-top: 1px solid rgba(0, 162, 232, 0.15);
    margin: 2rem 0;
    position: relative;
    text-align: center;
}

.divider-skypoint::before {
    content: 'OR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a1c3a;
    padding: 0 1rem;
    color: #8fa0c4;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.skypoint-link {
    color: var(--skypoint-accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.skypoint-link:hover {
    color: #33bbf2;
    text-decoration: underline;
}

/* ──────────────────────────────────────────────────────────────────────────
   PREMIUM SKYNET ONLINE BRAND SPLIT-LAYOUT STYLES
   ────────────────────────────────────────────────────────────────────────── */

.split-layout-container {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 75px);
    width: 100%;
}

.split-left-pane {
    flex: 1.15;
    background-color: #0b0f19;
    background-image: 
        linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.95)), 
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 30, 39, 0.05) 39px, rgba(255, 30, 39, 0.05) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 30, 39, 0.05) 39px, rgba(255, 30, 39, 0.05) 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    color: #ffffff;
    box-sizing: border-box;
}

.split-right-pane {
    flex: 0.85;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 5rem;
    box-sizing: border-box;
    border-left: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .split-layout-container {
        flex-direction: column;
    }
    .split-left-pane {
        padding: 3rem 2rem;
    }
    .split-right-pane {
        padding: 3rem 2rem;
    }
}

.left-pane-pill {
    align-self: flex-start;
    background: rgba(255, 30, 39, 0.1);
    border: 1px solid rgba(255, 30, 39, 0.3);
    color: #ff3d44;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.left-pane-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.left-pane-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 540px;
}

.left-pane-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 520px;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-icon-wrapper {
    background: rgba(255, 30, 39, 0.12);
    border: 1px solid rgba(255, 30, 39, 0.25);
    color: #ff1e27;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 30, 39, 0.1);
}

.feature-text-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #f8fafc;
}

.feature-text-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.45;
}

.form-card-wrapper {
    width: 100%;
    max-width: 480px;
}

.form-pill-badge {
    display: inline-block;
    border: 1.5px solid #ff1e27;
    color: #ff1e27;
    background: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 20px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.form-welcome-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.form-welcome-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.form-group-light {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label-light {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1e293b;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-container-light {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon-left {
    position: absolute;
    left: 1.2rem;
    color: #64748b;
    font-size: 1rem;
    pointer-events: none;
}

.form-input-light {
    width: 100%;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.9rem 1.2rem 0.9rem 3rem;
    color: #0f172a;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input-light:focus {
    outline: none;
    border-color: #ff1e27;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 30, 39, 0.15);
}

.password-toggle-light {
    position: absolute;
    right: 1.2rem;
    cursor: pointer;
    color: #64748b;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.password-toggle-light:hover {
    color: #ff1e27;
}

.btn-skynet-red {
    width: 100%;
    background-color: #ff1e27;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 30, 39, 0.2);
}

.btn-skynet-red:hover {
    background-color: #e11019;
}

.btn-skynet-green {
    width: 100%;
    background-color: #198754;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 1.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-skynet-green:hover {
    background-color: #157347;
}

.btn-skynet-outline-red {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ff1e27;
    border-radius: 6px;
    padding: 0.85rem 1.5rem;
    color: #ff1e27;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    text-decoration: none;
}

.btn-skynet-outline-red:hover {
    background-color: rgba(255, 30, 39, 0.05);
}

.form-link-highlight {
    color: #ff1e27;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.form-link-highlight:hover {
    color: #d30008;
    text-decoration: underline;
}

.navbar-skynet {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    height: 85px !important;
    padding: 0 4rem !important;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-link-btn-red {
    color: #475569;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-link-btn-red:hover {
    color: #ff1e27;
}

.nav-link-btn-red.active {
    color: #ffffff;
    background-color: #ff1e27;
}

.nav-link-btn-outline {
    color: #ff1e27;
    border: 1.5px solid #ff1e27;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-link-btn-outline:hover {
    background-color: rgba(255, 30, 39, 0.05);
}

.table-row-light:hover {
    background-color: #f1f5f9 !important;
}

