/* Form-area */

.form-area {
    margin: 0 auto;
    margin: 3rem 0 3rem 0;
    padding: 5rem 0 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
 }
 
 .reservation {
    max-width: 20rem;
    margin-top: 1.2rem;
 }
 
 form {
    display: flex;
    flex-direction: column;
    align-items: start;
 }
 
 form label {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
    margin-top: 1.2rem;
    color: #007BFF;   
 }
 
 form input {      
    width: 20rem; 
    height: 2rem; 
    border: none;
    outline: none;
    border-bottom: 0.05rem solid #221e1e;
    font-size: 1rem;
    text-align: center;
    padding: 0 0.5rem 0 0.5rem;
 }
 
 form textarea {
    width: 20rem;  
    padding: 0.3rem; 
    font-size: 1rem;
 }
 
 label > input[type="checkbox"] + span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem; 
    color: #000;   
 }
 
 input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: #007BFF;
    margin-right: 0.5rem;
 }
 
 input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #007BFF;
    outline: none;
    cursor: pointer;
    background-color: white;
 }
 
 input[type="checkbox"]:checked {
    background-color: #007BFF;
    border-color: #007BFF;
    position: relative;
 }
 
 input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
    top: 1px;
    left: 4px;
 }
 
 input[type="submit"] {
    margin-top: 2rem;
    background-color: #34495e;
    border-color: #34495e;
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    height: 3rem;
    border-radius: 2rem;
 }
 
 input[type="submit"]:hover,
 input[type="submit"]:active {
    background-color: #221e1e;
    border-color: #221e1e;
    /* color: #007BFF; */
    transition: background-color 0.5s ease, color 0.5s ease;
 }
 
 .form-area p {   
    font-size: 0.7rem;
    text-align: justify;
    margin-top: 0.5rem;
    padding: 0 1rem 0 1rem;
 }


/* messages */

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border: 1px solid #c3e6cb;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
}