/* styles.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #050d25;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #050d25;
    padding: 20px;
    text-align: center;
}

.header img {
    max-width: 200px;
}

/* Container */
.container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Formulário */
.sp-form-outer {
    width: 100%;
}

.sp-field {
    margin-bottom: 20px;
}

.sp-control-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.1em;
}

.sp-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.sp-form-control:focus {
    border-color: #007BFF;
    outline: none;
}

/* Checkbox */
.sp-checkbox-option {
    display: flex;
    align-items: center;
}

.sp-checkbox-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.sp-checkbox-option span {
    font-size: 0.95em;
}

/* Botão */
.sp-button-container {
    text-align: center;
}

.sp-button {
    background-color: #007BFF;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sp-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.sp-button:active {
    transform: translateY(0);
}

/* Feedback de Telefone */
.telefone-feedback {
    font-size: 0.9em;
    margin-top: 5px;
}

/* Mensagens de Sucesso e Erro */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.error-messages {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-messages ul {
    list-style-type: disc;
    margin-left: 20px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 15px;
}
