/**
 * Graph Contact Form — Default Styles
 *
 * Minimal, clean defaults that work with most themes.
 * Override these in your theme stylesheet if needed.
 */

.gcf-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.gcf-heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gcf-intro {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    font-size: 0.9375rem;
}

.gcf-field {
    margin-bottom: 1.5rem;
}

.gcf-field label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.gcf-required {
    color: #c62828;
    margin-left: 0.125rem;
}

.gcf-description {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.6;
    margin-bottom: 0.375rem;
    font-style: italic;
}

.gcf-field input[type="text"],
.gcf-field input[type="email"],
.gcf-field input[type="tel"],
.gcf-field input[type="date"],
.gcf-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
    background: #ffffff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.gcf-field input:focus,
.gcf-field textarea:focus {
    outline: none;
    border-color: #333333;
}

.gcf-field textarea {
    resize: vertical;
    min-height: 120px;
}

.gcf-submit {
    margin-top: 1.5rem;
}

.gcf-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gcf-button:hover {
    background: #333333;
    transform: translateY(-1px);
}

.gcf-button:disabled {
    background: #999999;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.gcf-messages {
    padding: 0.875rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.gcf-messages--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.gcf-messages--error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}
