

body {
  font-family: "Roboto", sans-serif;
}

.login-container {
  height: 100%;
  width: 100%;
  /* background-color: #eff3f4; */
}

.form-wrapper {
  background-color: #fff;
  min-height: 300px;
  width: 450px;
  margin: 5px auto;
  box-shadow: 0px 0px 12px #004757;
  border: 1px solid #eee;
  padding: 20px 25px;
  border-radius: 3px;
}

.form-img {
  display: block;
  /* height: 140px; */
  width: 140px;
  margin: 0 auto 0 auto;
  border-radius: 50%;
}

.input-group {
  margin: 0 0 24px 0;
}

.label {
  font-size: 14px;
  display: block;
  margin: 2px 0 6px 2px;
  font-weight: bold;
  color: #616161;
}

.label-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link {
  text-decoration: none;
  color: #4eb8dd;
  font-size: 14px;
  cursor: pointer;
}

.link:hover {
  text-decoration: underline;
}

.input {
  width: 100%;
  padding: 12px 12px;
  box-sizing: border-box;
  /*   background-color: #eee; */
  background-color: #eff3f4;
  border: 1.5px solid transparent;
  font-size: 16px;
  border-radius: 3px;
  transition: 0.2s ease-in;
}

.input:focus {
  outline: none;
  border-color: #4eb8dd;
}

.login-btn {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #023b48;
  border: 1px solid transparent;
  padding: 5px 12px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 3px;
}

.login-btn:hover {
  background-color: #023b48;
}



.or-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 10px 0;
  width: 100%;
}

.or-container {
  display: block;
  width: 100%;
}

.or {
  margin: 0 5px;
  color: #bbb;
  font-size: 12px;
}

.oauth-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.o-btn {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  padding: 12px 7px;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
}

.facebook {
  background-color: #607cb7;
}

.facebook:hover {
  background-color: #506ba5;
}

.google {
  background-color: #dd4b39;
}

.google:hover {
  background-color: #c54333;
}

.p {
  font-size: 12px;
  text-align: center;
  color: #bbb;
  margin: 5px 0 0 0;
}