* {
  box-sizing: border-box; }

html, body {
  height: 100%; }

html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px; }

body {
  background-color: #fcfcfd;
  color: #444;
  margin: 0; }

.container {
  --input-focus-color: #e53935;
  --submit-btn-hover-color: #ef5350;
  --alert-error-color: #e53935;
  --alert-success-color: #388e3c;
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 .85rem; }

.login-form {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
  padding: 2.15rem 1.5rem;
  max-width: 100%;
  width: 23.5rem; }

.login-form .header {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: .25rem; }

.login-form .header .logo img {
  height: auto;
  margin-bottom: 1rem;
  width: 3.5rem; }

.login-form .header .title {
  color: #444;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1.5rem; }

.login-form .header .logging-in {
  font-size: 1.15rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.4; }

.login-form .header .alert {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  height: 1.35rem;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.5rem; }

.login-form .header .alert .alert-error {
  color: var(--alert-error-color); }

.login-form .header .alert .alert-success {
  color: var(--alert-success-color); }

.login-form .icon img {
  height: auto;
  width: 1rem; }

.input-control {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.05rem;
  position: relative; }

.input-control input {
  border: none;
  color: #333;
  display: block;
  font-size: 1.1rem;
  outline: none;
  padding: 0.75rem 1rem;
  width: 100%;
  margin-bottom: 2px; }

.input-control:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--input-focus-color);
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s; }

.input-control.input-control-focus:after {
  width: 100%; }

.input-control.has-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.input-control.has-icon.has-icon-left .icon-left {
  left: .5rem; }

.input-control.has-icon.has-icon-left input {
  padding-left: 2rem; }

.login-actions {
  margin-bottom: 1rem; }

.login-actions button[type=submit] {
  background-color: var(--input-focus-color);
  border-radius: 30px;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07);
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: .5rem;
  margin-bottom: .5rem;
  outline: none;
  padding: .75rem 1rem;
  text-transform: uppercase;
  width: 100%;
  transition: .350s; }

.login-actions button[type=submit]:hover {
  background-color: var(--submit-btn-hover-color); }

.divider {
  border-bottom: 2px solid #dedede;
  margin-bottom: 1.15rem; }

.divider--short {
  border-bottom: 2px solid #999;
  width: 2.85rem;
  margin-left: auto;
  margin-right: auto; }

.login-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em; }

.login-links a {
  color: #0277bd;
  font-size: 1em;
  position: relative;
  text-decoration: none; }
  .login-links a:hover {
    color: #004c8c; }

.link-description {
  display: flex;
  flex-direction: column; }
  .link-description span {
    font-size: .9em;
    color: #777; }

.cursor-pointer {
  cursor: pointer; }

@media screen and (max-width: 768px) {
  .input-control {
    margin-bottom: 1.75rem; } }
