body {
  overflow: auto;
  background-color: #F8F8FF;
  font-family: 'Montserrat', sans-serif;
}
  
form .loginform {
  position: relative;
  border-radius: 10px;
  z-index: 2;
}

input {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
}
button {
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  border-bottom: 2px solid #0062cc;
  line-height: 32px;
  padding: 5px 10px;
}

.loginbutton {
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  border-bottom: 2px solid #0062cc;
  line-height: 32px;
  padding: 5px 10px;
}

label {
  color: grey;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  color: grey;
  padding : 5px 10px;
  line-height: 32px;
  font-size: 16px;
  box-sizing: border-box;
}

form > p {
  display: flex;
  justify-content: center;
  align-items: center;
  color : grey;
  margin: 50px auto;
}

form > p::before,
form > p::after {
content: "";
display: block;
width: 40%;
height: 1px;
background-color: #ccc;
margin: 0 10px;
}

form > p::before {
margin-right: 10px;
}

form > p::after {
margin-left: 10px;
}

button.google {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
background-color: white;
border: 1px solid #ddd;

border-radius: 5px;
cursor: pointer;
margin-top: 10px;
color: black;
line-height: 32px;
}

button.google img {
vertical-align: middle;
margin-right: 10px;
}


.signup {
text-align: center;
margin-top: 20px;
}
.signup a {
color: #007bff;
font-weight: bold;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}