/* Password Strength Meter Styles */
.password-strength-meter {
    display: flex;
    gap: 0px;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.strength-bar {
    flex: 1;
    height: 100%;
    background-color: #e0e0e0;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.strength-bar.active {
    transition: background-color 0.3s ease;
}

/* Password Input Container */
.password-input-container {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 1.2rem;
    user-select: none;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #495057;
}

.password-toggle i {
    pointer-events: none;
}

/* Password Requirements Text */
.password-requirements {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* SweetAlert2 Custom Styles */
.swal2-container {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.swal2-popup {
    border-radius: 15px;
    padding: 2rem;
}

.swal2-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.swal2-html-container {
    font-size: 0.95rem;
    line-height: 1.6;
}

.swal2-icon {
    margin: 1.5rem auto 1rem;
}

/* SweetAlert Button Styles */
.swal2-confirm,
.swal2-cancel {
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.swal2-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swal2-cancel:hover {
    background-color: #5a6268 !important;
}
