/* ===================== */
/* CYBERPUNK AUTH SYSTEM */
/* ===================== */

body {
    background-color: #0a0e17 !important;
    color: #00f3ff !important;
}

.deep-vault-terminal {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #0a0e17;
    border: 1px solid #1e2a4a;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    font-family: 'Courier New', monospace;
    color: #00f3ff; /* Super bright blue */
}

/* Header Styles */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.auth-header h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #00f3ff; /* Super bright blue */
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(0, 68, 102, 0.3);
    border: 1px solid #00f3ff;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Security Console */
.security-console {
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid #1e2a4a;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.console-line {
    margin-bottom: 5px;
}

.console-status {
    color: #00ffaa;
}

.console-warning {
    color: #ffaa00;
    animation: blink 1s infinite;
}

/* Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

.auth-tab {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    color: #00f3ff;
    margin: 0 5px;
}

.auth-tab.active {
    border-bottom: 3px solid #00f3ff;
    color: #00f3ff;
}

.auth-tab:hover {
    background: rgba(0, 170, 255, 0.1);
}

/* Form Elements */
.auth-form {
    margin-top: 1.5rem;
    font-size: 16px; /* Prevent mobile zoom */
}

.input-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #00f3ff;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="url"],
.auth-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid #1e2a4a;
    border-radius: 4px;
    color: #00f3ff;
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
    font-size: 16px; /* Prevent mobile zoom */
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: #00f3ff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Account Type Selector */
.account-type-container {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.account-type-option {
    flex: 1;
    min-width: 120px;
}

.account-type-option input[type="radio"] {
    display: none;
}

.account-type-option label {
    display: block;
    padding: 12px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid #1e2a4a;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.account-type-option input[type="radio"]:checked + label {
    border-color: #00f3ff;
    background: rgba(0, 170, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.account-type-option input[type="radio"]:checked + label::after {
    content: "✓";
    position: absolute;
    right: 8px;
    top: 8px;
    color: #00f3ff;
    font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .account-type-container {
        flex-direction: row;
        gap: 10px;
    }
    
    .account-type-option {
        min-width: calc(50% - 10px);
    }
}

/* Buttons */
.auth-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0066ff 0%, #00aaff 100%);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.auth-button:hover {
    background: linear-gradient(135deg, #0055dd 0%, #0099ee 100%);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
}

/* Footer Links */
.auth-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.auth-footer a {
    color: #00f3ff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 15px;
    background: rgba(0, 68, 102, 0.3);
    border-radius: 4px;
}

.auth-footer a:hover {
    color: #fff;
    background: rgba(0, 170, 255, 0.3);
}

/* Payment Options */
.payment-options {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1e2a4a;
}

.options-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #00f3ff;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

.crypto-option {
    text-align: center;
    padding: 10px;
    background: rgba(0, 20, 40, 0.3);
    border: 1px solid #1e2a4a;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.crypto-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
    border-color: #00f3ff;
}

.crypto-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #00f3ff;
}

.crypto-label {
    font-size: 0.7rem;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .deep-vault-terminal {
        padding: 1.5rem;
        margin: 1rem;
        width: auto;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .auth-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .auth-tab {
        padding: 10px 15px;
        margin: 0 3px 5px 0;
    }
    
    .account-type-selector {
        flex-direction: column;
    }
    
    .auth-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .auth-footer a {
        text-align: center;
    }
    
    /* Prevent mobile zoom */
    @viewport {
        width: device-width;
        zoom: 1.0;
        max-zoom: 1.0;
        min-zoom: 1.0;
        user-zoom: fixed;
    }
    
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}