
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open sans';
  color: #fff;
}

section {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('../images/hospi.jpg');
  background-size: cover;
  background-position: center center;
}

.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(rgba(0,0,60,0.3),rgba(0,0,60,0.3));
  width: 400px;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgb(18 44 230);
}

h1 {
  text-transform: uppercase;
  font-size: 2em;
  text-align: center;
  margin-bottom: 2em;
}

.control input {
  width: 100%;
  display: block;
  padding: 10px;
  color: #222;
  border: none;
  outline: none;
  border-radius: 15px;
  margin: 1em 0;
}

.control input[type='submit'] {
  background: #1c2fb97d;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.3em;
  opacity: 0.6;
  transition: opacity 0.3 ease;
}

.control input[type='submit']:hover {
  opacity: 1;
  color: #222;
}

.link {
  text-align: center;
}

.link a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  opacity: 0.6;
  transition: opacity 0.3 ease;
}

.link a:hover {
  opacity: 1;
}

@media only screen and (max-width: 500px) {

  .form-container{
    display: flex;
    text-align: center;
    justify-content: center;
  }
  .form-container{
    display: flex;
    flex-wrap: wrap;
    width: 300px;
    /* padding: 0; */
  }
}

.dataTables_wrapper .dataTables_filter {
    float: left !important;
    text-align: right;
    margin-left: 73px;
}