﻿.password-input-group {
    position: relative;
    display: block;
}

.password-generator-group {
    position: relative;
}

.password-generate-btn {
    margin-top: 8px;
}

.password-strength-indicator {
    height: 4px;
    border-radius: 2px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.password-strength-weak {
    background-color: #dc3545;
    width: 33%;
}

.password-strength-medium {
    background-color: #ffc107;
    width: 66%;
}

.password-strength-strong {
    background-color: #28a745;
    width: 100%;
}

.password-copy-btn {
    position: absolute;
    right: 45px;
    top: 8px;
    border: none;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    transition: color 0.2s ease;
}

    .password-copy-btn:hover {
        color: #28a745;
    }

.password-input-group input::placeholder {
    font-size: 0.875rem;
    color: #6c757d;
    opacity: 0.7;
}
