.form-user-credentials {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 8% auto 0% auto;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: whitesmoke;
  border-radius: 25px;
}
.form-user-credentials .checkbox {
  font-weight: 400;
}
.form-user-credentials .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-user-credentials .form-control:focus {
  z-index: 2;
}
.form-user-credentials input[type="text"] {
  margin-bottom: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-user-credentials input[type="email"] {
  margin-bottom: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
} 
.form-user-credentials input[type="password"] {
  margin-bottom: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-user-credentials button {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-user-credentials > .form-group{
	margin-bottom: 0px;
}