html, body {
  background: url('../img/bg-login.jpg');
  background-size: cover;
  background-position: bottom;
  font-family: "Fredoka", sans-serif;
}

.box {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 3px #e5e5e5;
  font-weight: bold;
  padding: 40px;
  width: 100%;
  overflow: hidden;
}

h2 {
  color: #FF8360;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  margin-bottom: 35px;
  text-align: center;
}

.input-container {
  position: relative;
  width: 100%;
}

input {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid lightgrey;
  border-radius: 50px;
  outline: none;
  box-sizing: border-box;
  color: grey;
}

.placeholder {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  background-color: #FFFFFF;
  padding: 0 5px;
  pointer-events: none;
  opacity: 1;
  color: #FF8360;
  font-weight: normal;
}

input:focus + .placeholder,
input:not(:placeholder-shown) + .placeholder {
  top: 0px;
  left: 30px;
  font-size: 12px;
}

.form-check-label {
  color: grey;
  font-weight: normal;
  margin-left: 5px;
}

.form-check-input,
.form-check-label {
  cursor: pointer;
}

.form-check-input[type=checkbox], 
.form-check-input:checked[type=checkbox] {
  padding: 0!important;
  border: 1px solid lightgrey;
}

.form-check-input:checked[type=checkbox] {
  background-color: #FF8360;
  border: 1px solid #FF8360;
}

input[type=submit] {
  background: #FFFFFF;
  color: #FF8360;
  border: 1px solid #FF8360;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]:hover {
  background: #FF8360;
  color: #FFFFFF;
}

.alert {
  border-radius: 10px;
  color: #cc0000;
  font-weight: normal;
  padding: 10px;
}

.alert i {
  margin-right: 10px;
}

.alert-error {
  background: rgba(248, 69, 69, 0.2);
}


