.desc-reset {
    margin-bottom: 30px;
}

.pass-label {
    display: block;
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.pass-input {
    width: 100%;
    padding: 12px 45px 12px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.pass-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pass-input.error {
    border-color: #fc8181;
}

pass-input.success {
    border-color: #68d391;
}

.icon-left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.icon-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a0aec0;
    transition: color 0.3s ease;
}

.icon-right:hover {
    color: #667eea;
}

/*.error-message {*/
/*    color: #fc8181;*/
/*    font-size: 12px;*/
/*    margin-top: 5px;*/
/*    display: none;*/
/*}*/

/*.error-message.show {*/
/*    display: block;*/
/*}*/

.password-strength {
    margin-top: 10px;
}

.strength-bars {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.strength-bar {
    height: 4px;
    flex: 1;
    background: #e2e8f0;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.strength-bar.active {
    background: #fc8181;
}

.strength-bar.active.medium {
    background: #f6ad55;
}

.strength-bar.active.strong {
    background: #68d391;
}

.strength-text {
    font-size: 12px;
    color: #718096;
}

.requirements {
    background: #f7fafc;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.requirements-title {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.requirement {
    font-size: 12px;
    color: #718096;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.requirement.met {
    color: #48bb78;
}

.requirement::before {
    content: '○';
    font-size: 16px;
}

.requirement.met::before {
    content: '✓';
    color: #48bb78;
}
