/* Inherits basic styles from professional-tools.css */

.password-input-wrapper {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 1.1em;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 45px;
    /* Space for icon */
    border: 1px solid #dfe6ed;
    border-radius: 8px;
    font-size: 16px;
    height: 50px;
}

.input-with-icon input:focus {
    border-color: var(--ast-global-color-0, #0274be);
    outline: none;
    box-shadow: 0 0 0 1px var(--ast-global-color-0, #0274be);
}

.btn-icon {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: #334155;
}

.strength-meter-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.strength-meter-container.hidden {
    display: none;
}

.meter-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.score-text {
    font-size: 18px;
    font-weight: 700;
    text-align: right;
    margin-bottom: 15px;
}

/* Score Colors */
.score-0 .meter-fill,
.score-0.score-text {
    background-color: #ef4444;
    color: #ef4444;
}

/* Red */
.score-1 .meter-fill,
.score-1.score-text {
    background-color: #f97316;
    color: #f97316;
}

/* Orange */
.score-2 .meter-fill,
.score-2.score-text {
    background-color: #eab308;
    color: #eab308;
}

/* Yellow */
.score-3 .meter-fill,
.score-3.score-text {
    background-color: #84cc16;
    color: #84cc16;
}

/* Light Green */
.score-4 .meter-fill,
.score-4.score-text {
    background-color: #22c55e;
    color: #22c55e;
}

/* Green */

.crack-time-section {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.feedback-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.feedback-item.hidden {
    display: none;
}

.warning {
    color: #b91c1c;
}

.suggestion {
    color: #0369a1;
}