/* Estilos específicos para PASSWORD RESET */

.password-reset-page .panel-registrar {
    background: #ffffff;
}

.password-reset-page .panel-registrar__contenedor {
    padding: 7vh 24px 5vh 24px;
    width: 400px;
}

.password-reset-page h1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #474747;
    margin-bottom: 8px;
    text-align: center;
}

.password-reset-page p,
.password-reset-page .text-parrafo {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 24px;
    text-align: center;
}

.password-reset-page #email,
.password-reset-page #password-field,
.password-reset-page #password-field-repeat {
    height: 48px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.password-reset-page #email:focus,
.password-reset-page #password-field:focus,
.password-reset-page #password-field-repeat:focus {
    outline: none;
    border-color: #1890FF !important;
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

.password-reset-page #email:hover,
.password-reset-page #password-field:hover,
.password-reset-page #password-field-repeat:hover {
    border-color: #1890FF !important;
}

.password-reset-page .form-control-input {
    height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #333333 !important;
}

.password-reset-page .form-with-icon {
    padding-left: 44px !important;
    padding-right: 44px !important;
}

.password-reset-page .input__group .input-icon {
    color: #bfbfbf;
    font-size: 16px;
    position: absolute;
    top: 16px;
    left: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 1;
}

.password-reset-page .input__group i {
    color: #bfbfbf;
    font-size: 18px;
    position: absolute;
    top: 15px;
    right: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-reset-page .input__group i:hover {
    color: #1890FF;
}

.password-reset-page .input__group input:focus ~ .input-icon {
    color: #1890FF;
}

.password-reset-page .darwin--button,
.password-reset-page .register--button {
    height: 48px;
    font-weight: 600;
    background: linear-gradient(135deg, #1890FF 0%, #0763EC 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.password-reset-page .darwin--button:hover:not(:disabled),
.password-reset-page .register--button:hover:not(:disabled) {
    background: linear-gradient(135deg, #0763EC 0%, #0050CC 100%);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
    transform: translateY(-1px);
}

.password-reset-page .darwin--button:disabled,
.password-reset-page .register--button:disabled {
    background: linear-gradient(135deg, #d9d9d9 0%, #bfbfbf 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.password-reset-page .darwin--button .fa-spinner,
.password-reset-page .register--button .fa-spinner {
    margin-right: 8px;
}

.password-reset-page .height__margin__bottom01 {
    margin-bottom: 20px;
}

.password-reset-page .height__margin__bottom {
    margin-bottom: 20px;
}

.password-reset-page .formulario-contenedor__button {
    margin-bottom: 24px;
}

.password-reset-page .alert-danger,
.password-reset-page .alert-success {
    background-color: #fff2f0;
    border: 1px solid #ffccc7;
    border-radius: 8px;
    color: #cf1322;
    padding: 12px 16px;
    margin-bottom: 20px;
    animation: slideDownPassword 0.3s ease;
}

.password-reset-page .alert-success {
    background-color: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #389e0d;
}

@keyframes slideDownPassword {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-reset-page .error {
    border-color: #ff4d4f !important;
    color: #ff4d4f;
    font-size: 13px;
    margin-top: 4px;
}

.password-reset-page .error:focus {
    border-color: #ff4d4f;
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.1);
}

.password-reset-page .help-block {
    color: #ff4d4f;
    font-size: 13px;
    margin-top: 4px;
}

.password-reset-page .password-requirements {
    background-color: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 14px;
    margin-top: -8px;
    margin-bottom: 20px;
}

.password-reset-page .password-requirements p {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.password-reset-page .password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-reset-page .password-requirements li {
    font-size: 13px;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.password-reset-page .password-requirements li i {
    position: static;
    margin-right: 8px;
    font-size: 13px;
}

.password-reset-page .password-requirements .text-invalid {
    color: #ff4d4f !important;
}

.password-reset-page .password-requirements .text-valid {
    color: #52c41a !important;
}

.password-reset-page .password-requirements .text-danger {
    color: #ff4d4f !important;
}

.password-reset-page .password-requirements .text-success {
    color: #52c41a !important;
}
