:root {
    --bg-color: #0a0705;
    --primary-color: #ff8c00;
    /* Zen Premium Orange */
    --text-color: #f5f3ee;
    /* Elegant Beige */
    --accent-color: #ff8c00;
    
    /* Global form vars */
    --gold: #ff8c00;
    --gold-dim: rgba(255, 140, 0, 0.15);
    --surf: #110e0a;
    --surf2: #1a1611;
    --border: rgba(255, 140, 0, 0.15);
    --text: #f5f3ee;
    --text-dim: #999999;
}

html,
body {
    font-family: 'Macondo', cursive;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

@media (max-width: 600px) {
    html {
        font-size: 19px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.validation-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    display: none;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-color);
    opacity: 0.6;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover {
    opacity: 1;
    color: var(--primary-color);
}