/* style_sl.css */
#weddingForm {
    font-family: Arial, sans-serif;
}

#weddingForm label {
    color: white;
    padding-bottom: 0.5rem;
}

#weddingForm input[type="text"],
#weddingForm input[type="email"],
#weddingForm input[type="tel"] {
    border-radius: 100px;
    width: 100%;
    padding-left: 10px;
}

#weddingForm input[type="checkbox"] {
    margin-top: -24px;
}

#weddingForm button {
    font-size: 25px;
    background-color: yellow;
    color: blue;
    text-align: center;
    border-radius: 100px;
    width: 250px;
    height: 60px;
    font-weight: 400;
}

#weddingForm p {
    color: white;
    padding-bottom: 1rem;
    font-size: 20px;
}

#weddingForm .flag-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px; /* Ajuste o tamanho da bandeira */
    width: auto;
}

#weddingForm .phone-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

#weddingForm input[type="tel"] {
    padding-left: 40px; /* Ajuste para dar espaço à bandeira */
    border-radius: 100px;
    width: 100%;
    height: 40px; /* Defina a altura do input */
    box-sizing: border-box; /* Para garantir que o padding não afete a largura */
}

#weddingForm .consent-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    gap: 10px;
}

#weddingForm .consent-container label {
    font-size: 20px;
}

#weddingForm .captch-box {
    color: white;
}

#weddingForm .form-message{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#weddingForm .error{
    color: red
}

#weddingForm .success{
    color: green
}