* {
    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;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

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

/* Responsividade */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 20px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
        border-radius: 12px;
    }
}

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

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

@media (max-width: 480px) {
    .logo {
        width: 70px;
    }
}

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

@media (max-width: 480px) {
    .header h1 {
        font-size: 24px;
    }
}

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

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

@media (max-width: 480px) {
    form h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

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

@media (max-width: 480px) {
    input, select, textarea {
        padding: 10px;
        margin-bottom: 12px;
        font-size: 13px;
    }
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00B050;
    box-shadow: 0 0 0 3px rgba(0, 176, 80, 0.1);
}

input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

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

@media (max-width: 480px) {
    button {
        padding: 12px;
        font-size: 14px;
    }
}

button:hover {
    background: #0A1F5C;
    transform: scale(1.02);
}

button:active {
    transform: scale(0.98);
}

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

@media (max-width: 480px) {
    .confirmation-info {
        font-size: 11px;
        padding: 10px;
        margin-top: 15px;
    }
}

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

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

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

@media (max-width: 480px) {
    .campo-data label {
        font-size: 12px;
    }
}

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

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