body {
background-color: #e6f2fd;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

::placeholder {
    color: #000;
}
.loginbox {
  background: #fff;
    max-width: 350px;
    width: 100%;
    padding: 20px 43px;
    border: 1px solid #e1e2f0;
    border-radius: 3%;
    box-shadow: 0 0 5px 0 rgba(42, 45, 48, 0.12);
    transition: all 0.3s ease;
    margin: 150px auto;
}
form {
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
}
h1 {
    color: #000;
    margin: 0;
    padding: 0 0 0;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}
.loginbox p {
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 13px;
}
.loginbox input {
    width: 100%;
    margin: 5px;
}
.loginbox input[type="text"],
input[type="password"] {
    border: none;
    border-bottom: 1px solid #bdc3c7;
    background: 0 0;
    outline: 0;
    height: 30px;
    font-size: 13px;
    opacity: 1;
    color: #000;
}
.loginbox input[type="submit"] {
    border: none;
    outline: 0;
    max-width: 185px;
    height: 35px;
    background: #af549a;
    letter-spacing: 1px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    font-family: "Open Sans", sans-serif;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.loginbox input[type="submit"]:hover {
    cursor: pointer;
    background: #fff;
    color: #af549a;
}
.loginbox a {
    font-size: 14px;
    text-decoration: none;
    color: #000;
}
.forget:hover {
    text-decoration: underline;
}
#text-account {
    font-size: 14px;
    color: #000;
    opacity: 0.4;
}
#create-account:hover {
    text-decoration: underline;
    font-weight: 700;
}
.logo {
    margin: 15px auto;
}
.switchdiv {
     margin: 10px 0;
}
.switch input {
    width: 0;
    height: 0;
    border: none;
    display: none;
}
.switch label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    padding-left: 2.5em;
    height: 1em;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}
.switch label:after,
.switch label:before {
    content: "";
    display: inline-block;
    position: absolute;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.switch label:before {
    left: 0;
    width: 2em;
    height: 1em;
    background-color: #d3d3d3;
    border-radius: 1em;
}
.switch label:after {
    left: 0.15em;
    width: 0.7em;
    height: 0.7em;
    background-color: #fff;
    border-radius: 50%;
}
.switch input[type="checkbox"]:checked + label:before {
    background-color: #af549a;
}
.switch input[type="checkbox"]:checked + label:after {
    left: 1.15em;
}
.switch input[type="radio"] + label {
    padding-left: 1.5em;
}
.switch input[type="radio"] + label:before {
    width: 1em;
}
.switch input[type="radio"] + label:after {
    width: 0.7em;
    height: 0.7em;
    left: 0.15em;
    opacity: 0;
}
.switch input[type="radio"]:checked + label:before {
    background-color: #90ee90;
}
.switch input[type="radio"]:checked + label:after {
    opacity: 1;
}
@media only screen and (max-width: 380px) {
    .loginbox {
        width: 259px;
    }
}
.alert{
    padding:15px;
    margin-bottom:20px;
    border:1px solid transparent;
    border-radius:4px;
}
.alert-warning{
    background-color:#fcf8e3;
    border-color:#faebcc;
    color:#8a6d3b;
}