.contact-form {
    max-width: 600px;
    margin: 100px 0;
}

/* Align label left, input right */
.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

/* Labels */
.form-row label,
.form-column label {
    width: 120px;
    font-weight: bold;
}

/* Inputs */
.form-row input {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #44475a;
}

/* Textarea (full width below label) */
.form-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.form-column textarea {
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #44475a;
    min-height: 120px;
    resize: vertical;
}

.form-submited {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7em;
}

.madvise-button {
    border-radius: 10px;
    border: none;
    background-color: #AA84E0;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.madvise-button:hover {
    background-color: #5F4A7D;
}

.form-submited button {
    display: block;
    padding: 10px 18px;
}

.contact-form button {
    display: block;
    margin-left: auto;
    padding: 10px 18px;
}
