/*******************************************************************************
 * LOGIN OPTIONS
 ******************************************************************************/

.login__container {
  display: flex;
  flex-direction: column;

  max-width: 600px;
  margin: 32px auto;
  padding: 16px 48px;
  
  background-color: var(--color-bg);
  border: 1px solid black;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.login--credentials,
.login--social {
  margin: 8px 0;
}

.login--credentials {
  align-items: center;
}

.login--credentials form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login--credentials__input {
  width: 100%;
  margin: 8px 0;

  text-align: center;
}

.login--credentials__input label {
  display: block;
  margin: 8px 0;

  font-weight: bold;
}

.login--credentials__input input[type="text"],
.login--credentials__input input[type="password"] {
  width: 100%;
  padding: 4px;

  border-radius: 4px;
}

.login--credentials button {
  width: 100%;
  padding: 8px;

  font-size: 1em;
  font-weight: bold;

  border: 1px solid black;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

  color: var(--color-bg);
  background-color: var(--color-status-info);

  transition: background-color 0.1s linear;
}

.login--credentials button:hover {
  background-color: var(--color-status-info-highlighted);
}

.login--social {
  flex: 1;
  
  display: flex;
  flex-direction: column;
}

.login--social__title {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  
  margin: 0;
  margin-bottom: 16px;
}

.login--social__options {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.login--social__option {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  margin-bottom: 4px;
  
  background-color: var(--color-mg2);
  
  font-weight: bold;
  
  border: 1px solid black;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition: background-color 0.1s linear;
}

.login--social__option:last-child {
  margin-bottom: 0;
}

.login--social__option:hover {
  background-color: var(--color-mg2--highlighted);
}

.login--social__option__thumbnail {
  height: 48px;
  width: auto;
  padding: 4px 16px;
}
