*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#0A1F5C,#00B050);
    display:flex;
    justify-content:center;
    padding:30px;
}

.container{
    background:white;
    width:100%;
    max-width:650px;
    border-radius:20px;
    padding:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

.header{
    text-align:center;
    margin-bottom:20px;
}

.logo{
    width:130px;
    margin-bottom:10px;
}

.header h1{
    color:#0A1F5C;
    font-weight:800;
}

.header p{
    color:#00B050;
    font-weight:600;
}

form h2{
    text-align:center;
    margin-bottom:20px;
    color:#0A1F5C;
}

input, select, textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:14px;
}

input:focus, select:focus, textarea:focus{
    outline:none;
    border-color:#00B050;
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    background:#00B050;
    color:white;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#0A1F5C;
}

.confirmation-info{
    text-align:center;
    margin-top:20px;
    font-size:13px;
    color:#0A1F5C;
    background:#f5f9ff;
    padding:15px;
    border-radius:12px;
    border:1px solid #e3ecff;
    animation: fadeIn 1s ease;
}

.confirmation-info strong{
    color:#00B050;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}

.slogan{
    font-size:12px;
    font-style:italic;
    font-weight:400;
    text-align:center;
    color:#0A1F5C;
    margin-top:5px;
}

.campo-data{
    margin-bottom:15px;
    display:flex;
    flex-direction:column;
}

.campo-data label{
    font-size:13px;
    margin-bottom:6px;
    color:#0A1F5C;
    font-weight:500;
}

input[type="date"],
input[type="time"]{
    background:#fff;
    color:#333;
}