.error-message {
    color: #dc3545;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.error-message::before {
    content: "⚠ ";
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url('../../img/eye-icon.png');
background-size: cover;
}

.password-input-container input[type="password"] {
    padding-right: 30px;
}

.password-toggle.show-password {
    background-image: url('../../img/eye-slash-icon.png');
}
