/* Extensões específicas para tela de cadastro */

.btn-cadastro {
    width: 100% !important;
    padding: 0.75rem 1.125rem !important;
    background: linear-gradient(135deg, var(--auth-primary) 0%, var(--auth-primary-dark) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.4375rem !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3) !important;
}

.btn-cadastro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-cadastro:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4) !important;
    background: linear-gradient(135deg, var(--auth-primary-dark) 0%, var(--auth-primary-light) 100%) !important;
}

.btn-cadastro:hover::before {
    left: 100%;
}

.btn-cadastro:active {
    transform: translateY(0) !important;
}

.btn-cadastro:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.text-muted {
    color: var(--auth-text-light) !important;
    font-size: 0.6875rem !important;
    margin-top: 0.4375rem;
    display: block;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Estilos para etapa de conclusão */
.conclusao-container {
    text-align: center;
    padding: 1rem 0;
}

.conclusao-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease-out;
}

.conclusao-container h3 {
    color: var(--auth-text-dark);
    margin-bottom: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
}

.conclusao-text {
    color: var(--auth-text-light);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.conclusao-info {
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 1rem 0.875rem;
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625rem;
    color: var(--auth-text-dark);
    font-size: 0.75rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    margin-right: 0.5rem;
    color: var(--auth-primary-light);
    font-size: 0.8125rem;
}

.conclusao-actions .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.8125rem !important;
    border-radius: 8px !important;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}
