/*
Custom CSS for the Thinkwise Universal GUI

Rename this file to custom.css. It will then get picked up by Universal, and it will not get overwritten when updating Universal in the future
*/


/* Add a background image */
.form__container {
  background: url('bg.jpg') no-repeat left center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Remove text from task buttons */
/* .MuiButton-label {
  font-size: 0 !important;
}

.MuiButton-label span {
  padding-right: 0 !important;
}

.MuiButton-root {
  min-width: 0 !important;
} */

/* Add more spacing for dividers */
.MuiDivider-root.css-1fumks {
  margin: 30px -8px !important;
  height: 1.5px;
}

/* Change background of header to VSH house style */
header {
  background-color: rgb(0, 134, 135) !important;
}