/* ======================================================
   GLOBAL SENTIX - AUTH PAGES STYLES
   Modern Black-Grey Corporate Design
   ====================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Auth Container */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Animated Background Particles */
.auth-bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(5) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 17s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(7) { left: 70%; top: 50%; animation-delay: 2s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; top: 20%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(9) { left: 90%; top: 60%; animation-delay: 1s; animation-duration: 23s; }
.particle:nth-child(10) { left: 15%; top: 90%; animation-delay: 3s; animation-duration: 18s; }
.particle:nth-child(11) { left: 25%; top: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(12) { left: 35%; top: 85%; animation-delay: 2s; animation-duration: 19s; }
.particle:nth-child(13) { left: 45%; top: 15%; animation-delay: 4s; animation-duration: 17s; }
.particle:nth-child(14) { left: 55%; top: 75%; animation-delay: 1s; animation-duration: 22s; }
.particle:nth-child(15) { left: 65%; top: 35%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(16) { left: 75%; top: 65%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(17) { left: 85%; top: 45%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(18) { left: 95%; top: 25%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(19) { left: 5%; top: 55%; animation-delay: 1s; animation-duration: 19s; }
.particle:nth-child(20) { left: 12%; top: 70%; animation-delay: 3s; animation-duration: 17s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.5; }
    90% { opacity: 0.3; }
}

/* Auth Box */
.auth-box {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 255, 255, 0.03),
        inset 0 0 50px rgba(255, 255, 255, 0.02);
}

.auth-box.verify-box {
    max-width: 650px;
}

/* Logo */
.auth-logo {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.auth-logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.auth-logo h1 span {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.auth-logo p {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Headings */
.auth-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert i {
    font-size: 1.2rem;
}

.alert-error {
    background: rgba(255, 50, 50, 0.15);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #00ff88;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-group input::placeholder {
    color: #666;
}

.form-group small {
    font-size: 0.8rem;
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -10px 0 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00ff88;
}

.checkbox span {
    font-size: 0.9rem;
    color: #ccc;
}

.forgot-link {
    font-size: 0.9rem;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: #00ffaa;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Auth Footer */
.auth-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.auth-footer a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: #00ffaa;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Verify Page Specific */
.verify-info {
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-info i {
    color: #00ff88;
    margin-right: 8px;
}

.verify-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.verify-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.verify-header i {
    font-size: 2rem;
    color: #00ff88;
}

.verify-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.verify-header p {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-box {
        padding: 40px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-logo h1 {
        font-size: 1.6rem;
    }
    
    .auth-box h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 15px;
    }
    
    .auth-box {
        padding: 30px 20px;
    }
    
    .auth-logo img {
        width: 60px;
        height: 60px;
    }
    
    .auth-logo h1 {
        font-size: 1.4rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
