.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 57px);
    padding: 24px;
}

.auth-box {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

.auth-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
}

.auth-error {
    color: #e8315a;
    font-size: 13px;
    min-height: 18px;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e8315a, #c0203f);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.btn-auth:hover {
    opacity: 0.85;
}

.auth-switch {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

.auth-switch a {
    color: #e8315a;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.verify-email-address {
    font-size: 14px;
    font-weight: 600;
    color: #e8315a;
    text-align: center;
    margin-bottom: 8px;
}

.auth-success {
    color: #4caf50;
    font-size: 13px;
    min-height: 18px;
}

.btn-resend {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 10px;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    margin-top: 4px;
}

.btn-resend:hover:not(:disabled) {
    border-color: #e8315a;
    color: #fff;
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}