@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bolder;
  font-variation-settings:
    "wdth" 100;
}

html {
  background-color: #BFECFF;
  color: black;
  font-weight: bolder;
  text-align: center;
}

input[type="text"], input[type="password"] {
  width: 15rem;
  padding: 12px 20px;
  margin: 8px 0;
  display: block;
  border: none;
  box-sizing: border-box;
  border-radius: 25px;
  text-align: center;
  color: black;
box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}
input[type="text"]:hover, input[type="password"]:hover {
    transition: box-shadow 1s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

input[type="text"]{
    background-color: #CDC1FF;
    color: black;
}
input[type="password"]{
    background-color: #BFECFF;
    color: black;
}

input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  accent-color: #a3be8c;
}
#remember {
    display: block;
}

button{
  background-color: #FFCCEA;
  color: black;
  border-radius: 25px;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 15rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

button:hover {
    transition: 
      box-shadow 1s;
    opacity: 0.8;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
a {
    text-decoration: underline;
    color: black;
}

.container {
  border: 5px solid #cdc1ff;
  background-color: #FFF6E3;
  border-radius: 25px;
  padding: 16px;
  width: 240px;
  height: max-content;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}
#errorContainer {
  min-width: 200px;
  min-height: 18px;
  margin-inline: auto;
  display: inline-block;
  visibility: hidden;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 25px;
  background-color: #FFF6E3;
  border: 5px solid #cdc1ff;
  color: #bf616a;
}
