body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

#logo {
    max-width: 150px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* So padding doesn't affect width */
    font-size: 16px;
}

.form-group select {
    appearance: none; /* For custom arrow, if desired later */
    background-color: #fff; /* Ensure select background is white */
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff; /* Highlight color */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.privacy-statement p {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-statement a {
    color: #007bff;
    text-decoration: none;
}

.privacy-statement a:hover {
    text-decoration: underline;
}

button[type="submit"] {
    background-color: #e83e8c; /* Pink color from image */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #d13076; /* Darker pink */
}

/* Estilos para status de localização */
.location-status {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.location-status.loading {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.location-status.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.location-status.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.location-status.warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

#location-icon {
    margin-right: 8px;
    font-size: 16px;
}

#location-text {
    flex: 1;
}

/* Animação para loading */
.location-status.loading #location-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estado desabilitado do botão */
button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

button[type="submit"]:disabled:hover {
    background-color: #ccc;
}

/* Basic responsiveness */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }
}
