
 body {
     margin: 0;
     padding: 0;
     background: linear-gradient(90deg, #0084c7, #002157);
     font-family: Arial, sans-serif;
     color: white;
 }

.form-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.form-area {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}

.form-area .input,
.form-area select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    background-color: white;
    color: #333;
}

.form-area .input::placeholder {
    color: #888;
}

.form-area .btn-enviar {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background-color: white;
    color: #0084c7;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.form-area .btn-enviar:hover {
    background-color: #f2f2f2;
}

.form-area p,
.form-area label {
    color: white;
    font-weight: bold;
}

.texto-confirma {
    font-weight: normal;
}

.form-area .titulo-principal {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
    color: white;
}

@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}
