/* Deal Room Gate — Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0A0E1A 0%, #1a1f2e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container { width: 100%; max-width: 480px; padding: 40px 24px; }

.logo { text-align: center; margin-bottom: 40px; }
.logo img { height: 40px; }

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

h1 { font-size: 24px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.subtitle { color: rgba(255, 255, 255, 0.6); font-size: 14px; margin-bottom: 32px; }

.confidential-badge {
    display: inline-block;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.3);
    color: #C8FF00;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.4); }
input[type="email"]:focus {
    outline: none;
    border-color: #C8FF00;
    background: rgba(255, 255, 255, 0.08);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.error {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}
.error.show { display: block; }

button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: #C8FF00;
    color: #0A0E1A;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}
button[type="submit"]:hover { background: #d4ff33; transform: translateY(-1px); }
button[type="submit"]:active { transform: translateY(0); }
button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 14, 26, 0.3);
    border-top-color: #0A0E1A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.privacy-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
}
