.contact-form {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 400px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-userinput {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}

.form-button {
    margin-bottom: 1rem;
    background-color: #ffa126;
    color: black;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.form-button:hover {
    background-color: #73d306;
}

.form-status-message {
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.status-success {
    background-color: #d4edda;
    color: black;
    border: 1px solid #c3e6cb;
}

.status-failure {
    background-color: #fd4a4a;
    color: black;
    border: 1px solid #c3e6cb;
}
