body 
{
  font-family:sans-serif;
}


h1{
    text-align: center;
}


form{
    width:25rem;
    margin: auto;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: whitesmoke;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 20px 25px;
}

input[type=text], input[type=password]{
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
    padding: 15px 18px;
    box-sizing: border-box;
  }

button {
    background-color: lightgrey;
    padding: 14px 20px;
    border-radius: 5px;
    border: none;
    margin: 20px 0;
    width: 100%;
    font-size: 18px;
  }

button:hover {
    opacity: 0.6;
    cursor: pointer;
}

.headingsContainer{
    text-align: center;
}

.mainContainer{
    padding: 16px;
}

.loginSpinner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 70vh;
}

#loading {
  width: 50px;
  height: 50px;
  border: 3px solid black;
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

.loginButtonSpinner {
  display: none;
  text-align: center;
  justify-content: center;
  padding-top: 15px;
}

#loadingButtonSpinner {
  width: 15px;
  height: 15px;
  border: 3px solid black;
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

/* Media queries for the responsiveness of the page */
@media screen and (max-width: 600px) {
  form{
    width: 25rem;
  }
}

@media screen and (max-width: 400px) {
  form{
    width: 20rem;
  }
}
