/* Custom CSS for Comece (Registration) Page */
/* Based on login page styling */

/* Background and layout */
.bg-gray.fullfit {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Registration box styling */
.comece-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Removed top colored bar for white background design */

/* Brand/Logo styling */
.brand-comece {
    text-align: center;
    margin-bottom: 30px;
}

.brand-comece img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Title styling */
.title-comece {
    text-align: center;
    margin-bottom: 30px;
}

.title-comece h1 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.title-comece .subtitle {
    color: #718096;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Content styling */
.comece-content {
    text-align: center;
    margin-bottom: 30px;
}

.comece-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.comece-text strong {
    color: var(--btn-primary-bg);
    font-weight: 600;
}

/* Button styling */

/* CTA em verde claro para destaque */
.botao-acao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #34D399; /* verde-400 */
    color: #ffffff; /* texto escuro para alto contraste */
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    gap: 8px;
}

.botao-acao:hover {
    transform: translateY(-2px);
    background: #10B981; /* verde-500 (um pouco mais escuro no hover) */
    filter: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.botao-acao:active {
    transform: translateY(0);
}

.botao-acao i {
    font-size: 18px;
    color: #ffffff !important;
}

/* Back link styling */
.back-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.back-link a {
    color: var(--btn-primary-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.back-link a:hover {
    color: var(--btn-primary-bg);
    filter: brightness(0.92);
    text-decoration: none;
}

/* Hide header elements */
.header .user-info-login {
    display: none !important;
}

.header .navigator {
    display: none !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .bg-gray.fullfit {
        padding: 20px;
    }
    
    .comece-box {
        padding: 30px 25px;
        margin: 0;
        border-radius: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .brand-comece img {
        max-height: 60px;
    }
    
    .title-comece h1 {
        font-size: 24px;
    }
    
    .comece-text {
        font-size: 15px;
    }
    
    .botao-acao {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
}

/* Animation */
.comece-box {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove default middle styling */
.middle.minfit.bg-gray {
    background: none !important;
    padding: 0 !important;
    min-height: auto !important;
}

.middle.minfit.bg-gray .container {
    max-width: none !important;
    padding: 0 !important;
}

/* Hide original content styling */
.adicionado.comece {
    display: none;
}

.title-icon {
    display: none;
}
