/* INPUT GROUP */
.input-group {
    position: relative;
    width: 100%;
}

/* LEFT ICON */
.input-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    opacity: 0.6;
}

/* INPUT FIELD */
.input-group input {
    width: 100%;
    height: 52px;
    padding-left: 48px;   /* left icon space */
    padding-right: 48px;  /* right icon space */
    border-radius: 14px;
    border: 1.5px solid #ddd;
    font-size: 15px;
}

/* PASSWORD RIGHT ICON (EYE) */
.password-group .toggle-pass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    cursor: pointer;
    opacity: 0.6;
}

/* focus look (optional but nice) */
.input-group input:focus {
    outline: none;
    border-color: #5b7cfa;
}