/* Estilos adicionales específicos para esta vista */
.icon-header {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fe938c, #e8b4cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(254, 147, 140, 0.3);
    animation: pulse 2s infinite;
}

.icon-header i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.alert-custom {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    animation: slideInDown 0.5s ease;
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-strength {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-weak {
    width: 33%;
    background: #dc3545;
}

.strength-medium {
    width: 66%;
    background: #ffc107;
}

.strength-strong {
    width: 100%;
    background: #28a745;
}

.form-text-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 13px;
    margin-top: 8px;
}

.paswor-style {
    position: relative;
    width: 100%;
}

.paswor-style input {
    width: 100%;
    padding-right: 50px;
}

.paswor-style button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 8px 12px;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s ease;
    border-radius: 6px;
}

.paswor-style button:hover {
    color: #fe938c;
    background: rgba(254, 147, 140, 0.1);
}

.invalid-state {
    text-align: center;
    padding: 30px 20px;
}

.invalid-state .icon-error {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.invalid-state .icon-error i {
    font-size: 40px;
    color: #dc3545;
}

.info-text {
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(254, 147, 140, 0.05);
    border-radius: 8px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fe938c;
}

.form-check label {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}