/* DO NOT OVERRIDE SITE COLORS */
body {
    margin: 0;
    padding: 0;
}

/* CONTACT FORM WRAPPER */
.contact-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.85);
}

/* TITLE */
.contact-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

/* FORM GROUPS */
.contact-container .form-group {
    margin-bottom: 18px;
}

/* LABELS — inherit site color */
.contact-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* INPUTS — inherit text color */
.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
}

.contact-container textarea {
    resize: vertical;
    min-height: 140px;
}

/* BUTTON — MATCH LOGIN BUTTON */
.contact-container button {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

/* SUCCESS / ERROR — USE SITE STYLES */
.contact-container .success,
.contact-container .error {
    text-align: center;
    margin-top: 20px;
}
