body {
  border: none;
  background-image:
    linear-gradient(45deg, #EA8D8D, #A890FE);
  overflow: hidden;
}

#loginContainer {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.boxTitle {
  font-family: 'Helvetica Neue';
  font-weight: bold;
  font-size: 2.9rem;
  color: white;
  text-align: center;
}

#loginBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 33px;
  width: 400px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
}

#loginTable {
  width: 320px;
  border-collapse: collapse;
}

tr { height: 50px; }

tr:nth-child(2) { height: 25px; }
tr:nth-child(4) { height: 35px; }

/* td { border: 1px solid #777; } */

.loginLabel {
  width: 80px;
  font-family: sans-serif;
  padding-left: 10px;
}

input[type=text], [type=password] {
  width: 220px;
  padding: 14px 10px 14px 10px;
  font-size: 1em;
  border-radius: 10px;
  border: none;
  float: right;
  clear: both;
  margin: none;
}

input[type=submit] {
  height: 50px;
  width: 100%;
  margin-top: 5px;
  border-radius: 20px;
  cursor: pointer;
  background-image:
    linear-gradient(90deg, #C33764, #C33764, #1D2671);
  font-size: 1.1em;
  text-align: center;
  color: white;
  border: none;
}

.error {
  color: red;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 10px;
}

a {text-decoration: none; color: white;}
form {margin-bottom: 0; }

@media only screen and (max-device-width: 600px) {

  .boxTitle {
    font-size: 7.2rem;
  }
  #loginBox {
    margin-top: 60px;
    width: 780px;
    height: 650px;
    border-radius: 100px;
  }
  #loginTable {
    width: 630px;
  }
  tr {height: 90px;}
  tr:nth-child(2) {height: 50px;}
  tr:nth-child(4) {height: 70px;}
  .loginLabel {
    width: 140px;
    font-size: 2.4rem;
    padding-left: 0px;
  }
  input[type=text], [type=password] {
    width: 430px;
    padding: 23px 18px 23px 18px;
    font-size: 2.4em;
    border-radius: 30px;
  }
  input[type=submit] {
    height: 100px;
    width: 100%;
    margin-top: 10px;
    border-radius: 40px;
    font-size: 2.8em;
  }
  .error {
    font-size: 2rem;
    padding-left: 20px;
  }
}
