* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
  align-items: center;
  justify-items: center;
}

.form {
  display: flex;
  flex-direction: column;
}

.alternative-login {
  display: flex;
  justify-content: space-around;
  gap: 16px;
}

.card {
  border: 1px solid #1da385;
  border-radius: 5px;
  width: 400px;
  padding: 32px 32px 32px 32px;
}

label {
  /* margin-bottom: 8px; */
  font-size: 16px;
  color: #1da385;
}

.logo {
  padding-bottom: 56px;
  padding-top: 24px;
}

input {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 28px;
  border-radius: 5px;
  width: 100%;
  color: inherit;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.009375em;
  min-height: 56px;
  padding-inline-start: 12px;
  padding-inline-end: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 0.5px solid grey;
}

input:focus {
  outline: none;
  border: 1px solid #1da385 !important;
}

button {
  min-height: 40px;
  width: 100%;
  border: 1px solid #1da385;
  border-radius: 5px;
  background-color: white;
  color: #1da385;
  font-weight: 500;
  letter-spacing: 0.0892857143em;
  line-height: normal;
}

button.log-in:hover {
  background: rgba(51, 170, 51, 0.04);
  cursor: pointer;
}

.divider {
  display: block;
  flex: 1 1 100%;
  height: 0px;
  max-height: 0px;
  transition: inherit;
  border-color: #1da385;
  border-style: solid;
  border-width: thin 0 0 0;
}

.alert {
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 5px;
  font-size: 14px;
  color: white;
  display: flexbox;
  padding: 30px 0;
  text-align: center;
}

.alert-error {
  background-color: #cf6679;
}

.alert-success {
  background-color: #1da385;
}

.fa {
  padding: 20px;
  font-size: 16px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  cursor: pointer;
}

/*.fa:hover {*/
/*  opacity: 0.7;*/
/*}*/

.fa-facebook {
  background: #3b5998;
  color: white;
}

.fa-facebook::after {
  padding-left: 8px;
  content: "FACEBOOK";
  font-family: "Roboto", sans-serif;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-google::after {
  padding-left: 8px;
  content: "GOOGLE";
  font-family: "Roboto", sans-serif;
}

.fa-auth {
    background: #1da385;
    color: white;
}

.fa-auth::after {
    padding-left: 8px;
    content: "CREATE USER";
    font-family: "Roboto", sans-serif;
}
