/* form.css */

/* Sezione Form */
.form-section {
    background-color: #000;
    display: flex;
    flex-direction: column; /* Imposta layout a colonna */
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    padding: 5px 5px;
    margin: auto;
    margin-left: -6%;
    margin-top: 100px;
}

/* Form principale */
form {
    width: 80%;
    max-width: 500px;
    padding: 30px;
    background: #000000; /* Grigio scuro */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto; /* Forza la centratura orizzontale */

}

/* Etichette del form */
label {
    width: 80%;
    text-align: left;
    margin-top: 10px;
    font-weight: lighter;
    color: #fff;
}

/* Input e Select */
input, select {
    width: 80%;
    height: 40px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

/* Placeholder degli input */
input::placeholder {
    color: #777;
    opacity: 0.8;
    height: 35px;
}

/* Link all'interno delle etichette */
label a {
    text-decoration: underline;
    color: #ffffff;
}

/* Container delle checkbox */
.checkboxes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    gap: 20px;
    margin-top: 10px;
    color: #FFD700;
    flex-wrap: wrap;
}

.checkboxes label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    white-space: nowrap;
}

.checkboxes input {
    width: 20px;
    height: 20px;
}

/* Bottone del form */
.btn {
    width: 80%;
    padding: 12px;
    margin-top: 15px;
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s ease;
    border: 2px solid #ffffff;
    margin: 0 auto; /* Assicura la centratura */
}

.btn:hover {
    background-color: #bb2528;
    color: #fff;
}

/* Box dei costi d'ingresso */
.entry-cost {
    color: #ffffff;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border: 2px solid #ffffff;
    border-radius: 15px;
    text-align: center;
    padding: 5px 10px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    margin: 20px auto;
}

.entry-cost p {
    margin: 5px 0;
}
