/* Style the form fields with icons */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 10px;  /* Position the icon inside the input box */
    top: 10px;   /* Set the icon to appear at the top-left corner */
    color: #aaa; /* Set the icon color */
}

.input-icon input, 
.input-icon textarea {
    padding-left: 30px; /* Add padding to leave space for the icon */
}