main {
    height: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem;
    gap: 1rem;
    background-color: #140c04;
}

.wrapper, .wrapper > .button {
    width: 100%;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 1rem 0;
    color: white;
}

.contact-form > .button {
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #3d2914;
    border-radius: 4px;
    background-color: var(--dark-yellow);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-yellow);
}

.error-message {
    display: none;
    margin-top: 0.5rem;
    color: #ff6b6b;
    font-size: 0.9rem;
}