.login-flex {
    display: flex;
    width: 100%;
    height: 100%;
    /* align-items: center; */
    padding-top: 80px;
    justify-content: center;
    min-height: 100vh;
    background: #001429;
}

.login-content {
    width: 100%;
    max-width: 600px;
}

.login-content h1 {
    color: white;
}

.login-content label {
    color: white;
}

.login-content .form-group {
  margin-top: 25px;
}

.login-content .form-group label {
    display: block;
    width: 100%;
    /* font-weight: bold; */
    padding-bottom: 10px;
    /* font-size: 1.25em; */
}

.login-content .form-group input {
    width: 100%;
    border: 0;
    box-sizing: border-box;
    padding: 10px;
}

.login-content .form-group select {
    width: 100%;
    border: 0;
    box-sizing: border-box;
    padding: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.content {
    padding: 24px;
}

/* PRINT MAINTENANCE STYLING */

.form-content {
    width: 100%;
    /* max-width: 600px; */
}

.form-content h1 {
    color: black;
}

/* .form-content label {
    color: black;
} */

.form-content .form-group label {
    display: block;
    width: 100%;    
    padding-bottom: 10px;
    font-size: 1em;
}

.form-content .form-group input {
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
}

.form-content .form-group textarea {
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

.active {
  color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #ffff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-content .content-footer {
  display: flex;
  justify-content: right;
}

.modal-content .content-footer button {
  margin-left: 30px;
  margin-top: 30px;
}

.show {
  display: block;
}

.grid-item {
  padding: 5px;
  margin-top: auto;
}
