html,
body {
    height: 99%;
    background-color: #f5f5f5;
}

.login-form-frame {
    background-color: #CD5C5C;
    width: 260px;
    padding: 10px 30px 12px 30px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 10px 10px 5px #888888;
}

.login-title {
    font-family: sans-serif;
    margin: 5px 0px 12px 0px;
    color: #EDEDED;
    font-size: 23px;
    text-align: center;
}

.login-form {
    background-color: #fff;
    width: 250px;
    padding: 25px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

input {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #CD5C5C;
  border-radius: 12px;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 14px;
  color: #CD5C5C;
  padding-left: 32px;
  outline: none; 
}

::placeholder {
  color: #CD5C5C;
}

.input-with-icon-username {
  background: url("/img/username.svg") no-repeat 10px 50%;
  background-size: 16px;
}

.input-with-icon-password {
  background: url("/img/password.svg") no-repeat 10px 50%;
  background-size: 16px;
}

.input-with-icon-2fa {
  background: url("/img/2fa.svg") no-repeat 10px 50%;
  background-size: 16px;
}

.button {
    background-color: #CD5C5C;
    border: none;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 12px;
    margin: 8px 0;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    font-family: sans-serif;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 20px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}