body {
  /* background: #ABCDEF; */
  font-family: garamond;
  font-weight: bold;
  display: flex;
  min-height: 90vh;
}

a {
  text-decoration: none;
  color: #4B0082;
}

.login, .other-login {
  color: #4B0082;
  background-color: #FFFFFF;
  margin: auto;
  box-shadow:
    0px 2px 10px #4B0082,
    0px 10px 20px #4B0082,
    0px 30px 60px 1px #4B0082;
  border-radius: 10px;
  padding: 80px;
  width: 30%;
}

.other-login{
  width: 60%;
}

.login .head {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login .head .company {
  font-size: 2.2em;
}

.login .msg {
  text-align: center;
}

.login .err-msg{
  text-align: center;
  color: red;
  font-style: italic;
}

input {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

.login .form input[type=text].text, input[type=email].text, input[type=password].password {
  /* border: none; */
  /* background: none; */
  box-shadow: 0px 2px 0px 0px white;
  border-color: #EACFF5;
  border-width: 1px;
  border-radius: 10px;
  width: 100%;
  color: #4B0082;
  font-size: 1em;
  outline: none;
}


.login .form .btn-auth {
  border: none;
  background-color: #4B0082;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
  box-shadow: 0px 0px 0px 2px white;
  border-radius: 3px;
  margin-top: 10px;
  padding: 4px 1em;
  transition: 0.5s;
}

.login .form .btn-auth:hover {
  background: #9D91A2;
  color: #FFFFFF;
  border: #4B0082;
  transition: 0.5s;
}

.login #second-btn {
  text-decoration: none;
  /* color: #4B0082; */
  padding: 10px 1em;
  float: right;
  font-size: small;
}
/* 
.login .forgot:hover {
  background: #9D91A2;
  color: #FFFFFF;
  border-radius: 6px;
  transition: 0.5s;
} */

footer {
  position: absolute;
  color: #4B0082;
  bottom: 15px;
  text-align: center;
  font-size: 10px;
  width: 100%;
  display: inline;
}
