/* 
 * Password Field Styling
 * 
 * CSS for styling password fields with toggle button
 */

/* Container for password field and toggle button */
.password-field-container {
    position: relative;
}

/* Style for password toggle button */
.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    font-size: 16px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle-btn:hover {
    color: #495057;
}

/* Adjust padding on password fields to make room for the icon */
.password-field-container input[type="password"],
.password-field-container input[type="text"] {
    padding-right: 40px;
}
