/* Estilos adicionais para página de registro */

.register-container {
    max-width: 420px;
}

.register-container .login-box {
    padding: 28px 28px;
}

/* Indicador de força da senha */
.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.password-strength.visible {
    opacity: 1;
    transform: translateY(0);
}

.strength-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-fill.weak {
    width: 33%;
    background: #ef4444;
}

.strength-fill.medium {
    width: 66%;
    background: #f59e0b;
}

.strength-fill.strong {
    width: 100%;
    background: #10b981;
}

.strength-text {
    font-size: 10px;
    font-weight: 500;
    min-width: 45px;
    text-align: right;
}

.strength-text.weak {
    color: #ef4444;
}

.strength-text.medium {
    color: #f59e0b;
}

.strength-text.strong {
    color: #10b981;
}

/* Termos */
.terms {
    margin-bottom: 18px;
}

.terms .remember-me {
    align-items: flex-start;
}

.terms .remember-me span:last-child {
    line-height: 1.4;
    font-size: 11px;
}

.terms-link {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.terms-link:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Ajuste para campo de confirmação de senha */
.input-group:last-of-type {
    margin-bottom: 20px;
}

/* Match indicator para confirmar senha */
.input-wrapper.match input {
    border-color: rgba(16, 185, 129, 0.5);
}

.input-wrapper.match .input-icon {
    color: #10b981;
}

/* Responsividade */
@media (max-width: 480px) {
    .register-container .login-box {
        padding: 32px 24px;
    }
    
    .terms .remember-me {
        font-size: 12px;
    }
}
