form {
    display: flex;
    flex-direction: column;
}

/* Labels */
label {
    font-weight: bold;
    margin: 10px 0 5px;
}

/* Inputs & Textareas */
input, textarea, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Textareas */
textarea {
    height: 80px;
    resize: vertical;
}

/* Button */
button {
    background: var(--dark-color);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background: #824AFF;
}
