.page-section.cadastro {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: #f0f5f9 !important;
    padding: 2rem;
}

.container {
    max-width: 420px;
    background: #fff;
    border-radius: 0.5rem;
    padding: 2.5rem;
}

.section-heading {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subheading {
    color: #6c757d !important;
    font-size: 0.875rem;
}

.section-subheading a {
    color: #3498db !important;
    font-weight: 600;
}

.login-box-body {
    width: 100%;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Checkbox personalizado */
.form-group label {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 0.875rem;
    cursor: pointer;
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
}

/* Botão de login - estilo Pocket Options */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    color: white !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .container {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
}

.login-box-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.row {
    margin-top: 1.5rem;
}

.col-xs-8, .col-xs-4 {
    padding: 0 0.5rem;
}

.recovery-link {
    margin-top: 1.5rem;
    position: relative;
}

.recovery-link a {
    color: #3498db !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
}

.recovery-link a::before {
    background-image: url(/img/icon-refresh-blue.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 16px;
    width: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 8px;
}

.sem-italico{
	font-style: normal !important;
}

.error{
	color: red !important;
}