.uupw-form-wrapper {
    max-width: 420px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    background: #ffffff;
}
.uupw-form-wrapper .uupw-field {
    margin-bottom: 15px;
}
.uupw-form-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Inputs */
.uupw-form-wrapper input[type="text"],
.uupw-form-wrapper input[type="password"],
.uupw-form-wrapper input[type="url"] {
    width: 100%;
    padding: 10px 38px 10px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

/* Password field wrapper */
.uupw-field.uupw-password-field {
    position: relative;
    margin-bottom: 25px;
}

/* Eye + text positioned UNDER the input */
.uupw-toggle-password {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: #f1f1f1;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.uupw-toggle-password:hover {
    opacity: 1;
}

.uupw-toggle-password:focus {
    outline: none;
}



/* Button */
.uupw-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: #0073aa;
    color: #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.uupw-btn:hover {
    background: #005f8a;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}
.uupw-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Info & errors */
.uupw-info {
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}
.uupw-error-inline {
    padding: 10px 12px;
    border-radius: 8px;
    background: #fbe9e9;
    color: #a40000;
    margin-bottom: 15px;
}

/* Top-center notices */
.uupw-notices-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 420px;
    text-align: center;
}
.uupw-notice {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: uupw-fade-in 0.2s ease-out;
}
.uupw-notice.uupw-success {
    background: #009245;
    color: #ffffff;
}
.uupw-notice.uupw-error {
    background: #7a003c;
    color: #ffffff;
}
.uupw-notice.uupw-info {
    background: #0073aa;
    color: #ffffff;
}
@keyframes uupw-fade-in {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Strength meter */
.uupw-password-strength {
    font-size: 12px;
    margin: 8px 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.uupw-strength-meter {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: #eee;
    position: relative;
    overflow: hidden;
}
.uupw-strength-meter::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: #7a003c;
    transition: width 0.2s ease, background 0.2s ease;
}
.uupw-strength-meter[data-meter="1"]::after {
    width: 33%;
    background: #7a003c;
}
.uupw-strength-meter[data-meter="2"]::after {
    width: 66%;
    background: #f5a623;
}
.uupw-strength-meter[data-meter="3"]::after {
    width: 100%;
    background: #009245;
}

/* Match hint */
.uupw-match-hint {
    font-size: 11px;
    margin-top: 4px;
    min-height: 14px;
}
.uupw-match-ok {
    color: #009245;
}
.uupw-match-bad {
    color: #7a003c;
}




.uupw-match-hint {
    font-weight: 600;       /* Slight bold */
    font-size: 14px;        /* Increased from default (usually 12px) */
    margin-top: 5px;
    display: block;
}

.uupw-match-ok {
    color: #009245;         /* Dashboard green */
    font-weight: 700;       /* Extra bold */
    font-size: 14.5px;      /* Slight emphasis */
}

.uupw-match-bad {
    color: #7a003c;         /* Wine red */
    font-weight: 700;       /* Extra bold */
    font-size: 14.5px;      /* Slight emphasis */
}

