* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: #f0f2f5; padding: 20px; display: flex; justify-content: center; }
.form-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}
.header-container { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.header-container h2 { margin: 0; font-size: 20px; color: #1a1a1a; }
.close-btn { font-size: 28px; font-weight: bold; color: #999; text-decoration: none; line-height: 1; }
h3 { color: #4267B2; font-size: 16px; margin: 20px 0 10px 0; border-bottom: 2px solid #f0f2f5; padding-bottom: 5px; }

/* Estilo unificado para inputs */
input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

/* O segredo para alinhar a lupa */
.cep-container { 
    display: flex; 
    gap: 0; 
    margin-bottom: 15px; 
}
.cep-container input { 
    margin-bottom: 0; 
    border-top-right-radius: 0; 
    border-bottom-right-radius: 0; 
    border-right: none;
}
.btn-search-cep {
    width: 50px;
    background: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    color: #4267B2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.btn-search-cep:hover { background: #dee2e6; }

button[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #4267B2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}
button[type="submit"]:hover { background-color: #365899; }
