label,select,input{
  color:black
}

label:hover{
  color:red
}

textarea.form-control {
    resize: vertical; /* Allows vertical resizing only */
    width: 100%;
    min-height: 320px; /* Ensures it's large enough by default */
   
    transition: border-color 0.3s ease;
  }

input:hover{
  border-color:red
}