:root {
    --pink: #ff69b4;
    --gold: #ffd700;
    --black: #1a1a1a;
}

/* Common button styles */
button, .button, .cta-button, input[type="submit"] {
    background: var(--pink);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover, .button:hover, .cta-button:hover, input[type="submit"]:hover {
    background: var(--gold);
}

/* Common form elements */
input, textarea, select {
    padding: 10px;
    margin: 5px 0;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--gold);
    color: white;
    border-radius: 5px;
}

/* Common section styling */
.section, .account-section {
    background: rgba(255,105,180,0.1);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Common headings */
h2 {
    color: var(--gold);
    margin-bottom: 20px;
} 