/* 
   Wandeath VIP - Login Styles
   Maintaining global premium themes while adding login-specific layouts.
*/

:root {
    --primary: #ee0000;
    --primary-alt: #cc0000;
    --gold: #ffd700;
    --bg-black: #0d0d0d;
    --bg-card: rgba(10, 10, 10, 0.7);
    --border: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-sec: #8c8c8c;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: #0a0a0a;
    color: var(--text-main);
    overflow-x: hidden;
}

.login-container {
    width: 100%;
    max-width: 440px;
    z-index: 100;
}

/* Reusing and refining the Tarot Card for the login box */
.auth-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.auth-card::after {
    content: '☠';
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gold);
    opacity: 0.2;
    font-size: 20px;
}

.auth-logo {
    max-width: 140px;
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

p.subtitle {
    color: var(--text-sec);
    font-size: 14px;
    margin-bottom: 32px;
}

/* Social Buttons */
.social-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--border);
}

.btn-google {
    background: #fff;
    color: #000;
}

.btn-google:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    border: none;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 700;
    margin: 24px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Email Form */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--primary-alt);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(238, 0, 0, 0.4);
}

.auth-footer {
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-sec);
}

.auth-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.auth-footer a:hover {
    color: #fff;
}