#contact-section {
    width: calc(100% - 20px);
    max-width: 600px;
    padding: 10px;
    padding-bottom: 100px;
}

#contact-section h1 {
    margin: 0px !important;
    margin-bottom: 30px !important;
}

.form-group {
    margin-bottom: 10px;
}

.contact-input {
    width: 100%;
    padding: 10px 12px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--primary);
    font-family: var(--font-family);
    font-size: var(--font-size-small);
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact-input:focus {
    border-color: var(--tertiary);
}

textarea.contact-input {
    font-family: var(--font-family);
    resize: vertical;
}

.contact-submit {
    padding: 5px 10px !important;
    border: 1px solid var(--border-color);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-submit:hover:not(:disabled) {
    background-color: var(--highlight-color);
}

.contact-submit:disabled {
    cursor: not-allowed;
}

#contact-sending {
    color: #eab308 !important;
    border-color: #eab308 !important;
}

#contact-success {
    color: #22c55e !important;
    border-color: #22c55e !important;
}

#contact-failed {
    color: #ef4444 !important;
    border-color: #ef4444 !important;
}