
  /* ---------- GENERAL ---------- */
  * {
    box-sizing: inherit;
  }
  
  html {
    box-sizing: border-box;
  }
  
  body {
    background-image: url("../img/email-pattern.png") !important;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.5;
    margin: 0;
    min-block-size: 100vh;
    padding: 5vmin;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  input {
    background-image: none;
    border: none;
    font: inherit;
    margin: 0;
    padding: 0;
    transition: all 0.3s;
  }
  
  svg {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
  }
  
  /* ---------- ALIGN ---------- */
  .align {
    display: grid;
    place-items: center;
  }
  
  /* ---------- BUTTON ---------- */
  
  .button {
    background-color: #d26229;
    color: #fff;
    padding: 0.25em 1.5em;
    display: block;
    margin: 0 auto;
    height: 50px;
    width: 60%;
  }

  .back {
    background-color: #003d5c;
    color: #fff;
    padding: 0.25em 1.5em;
    display: block;
    margin: 0 auto;
    height: 50px;
    width: 60%;
  }
  
  .button:focus,
  .button:hover {
    background-color: #d19868;
  }

  .back:focus,
  .back:hover {
    background-color: #1999e6;
  }

  /* ---------- ICONS ---------- */
  .icons {
    display: none;
  }
  
  .icon {
    fill: currentcolor;
    display: inline-block;
    height: 1em;
    width: 1em;
  }
  
  /* ---------- LOGIN ---------- */
  .login {
    width: 500px;
    border: 2px solid #003d5c;
    border-radius: 1.25em;
  }
  
  .login__header {
    background-color: #003d5c;
    border-top-left-radius: 1.15em;
    border-top-right-radius: 1.15em;
    color: #fff;
    padding: 1.25em 1.625em;
  }
  
  .login__header :first-child {
    margin-top: 0;
  }
  
  .login__header :last-child {
    margin-bottom: 0;
  }
  
  .login h2 .icon {
    margin-right: 14px;
  }
  
  .login__form {
    background-color: #fff;
    border-bottom-left-radius: 1.25em;
    border-bottom-right-radius: 1.25em;
    color: #777;
    display: grid;
    gap: 0.875em;
    padding: 1.25em 1.625em;
  }
  
  .login input {
    border-radius: 0.1875em;
  }
  
  .login input[type="text"],
  .login input[type="password"] {
    background-color: #eee;
    color: #777;
    padding: 0.25em 0.625em;
    width: 100%;
  }
  
  .login input[type="submit"] {
    display: block;
    margin: 0 auto;
    height: 50px;
  }

  .underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
  }
  
  .underlineHover:hover {
    color: #0d0d0d;
  }
  
  .underlineHover:hover:after{
    width: 100%;
  }

  a {
    color: #fff;
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
  }

  a:hover {
    color: #d26229;
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
  }