/* Общие стили для input-group */
.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #484848;
}

.input-group label i {
    margin-right: 8px;
    font-size: 0.85rem;

    width: 18px;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

/* Контейнер для поля с паролем - такой же как обычный input */
.password-input-container {
    position: relative;
    width: 100%;
}

.password-input-container input {
    width: 100%;
    padding: 12px 45px 12px 14px;
    font-size: 0.95rem;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.password-input-container input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

/* Кнопка показа/скрытия пароля */
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: #6c757d;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    z-index: 2;
}

.toggle-password:hover {
    color: #ffc107;
}

.toggle-password:focus {
    outline: none;
}