form label {
    font-family: 'Josefin Sans', sans-serif;
    color: #8c281a;
    font-weight: bold;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

form select {
    background-color: #8c281a;
    color: white;
    font-size: 18px;
    font-family: Arial, sans-serif;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

@media (max-width: 600px) {
    form {
        padding: 10px;
    }
}