html, body {
    height: 100%;
}
body{
    background: linear-gradient(to bottom, #ebf3f1, #92dbbe);
}
.login{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.form-container {
    width: 320px;
    border-radius: 0.75rem;
    background-color: white;
    padding: 2rem;
    color: black;
    justify-content: center;
    align-items: center;
  }
  
  .title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
  }
  
  .form {
    margin-top: 1.5rem;
  }
  
  .input-group {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .input-group label {
    display: block;
    color: black;
    margin-bottom: 4px;
  }
  
  .input-group input {
    width: 90%;
    border-radius: 0.375rem;
    border: 1px solid rgb(42, 219, 148);
    outline: 0;
    background-color: rgb(92, 142, 128);
    padding: 0.75rem 1rem;
    color: black;
  }
  
  .input-group input:focus {
    border-color: rgb(42, 219, 148);
  }
  
  .forgot {
    display: flex;
    justify-content: flex-end;
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgba(156, 163, 175,1);
    margin: 8px 0 14px 0;
  }
  
  .forgot a,.signup a {
    color: black;
    text-decoration: none;
    font-size: 14px;
  }
  
  .forgot a:hover, .signup a:hover {
    text-decoration: underline rgb(42, 219, 148);
  }
  
  .sign {
    display: block;
    width: 100%;
    background-color: rgb(134, 193, 169);
    padding: 0.75rem;
    text-align: center;
    color: rgba(17, 24, 39, 1);
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
  }
  
  .social-message {
    display: flex;
    align-items: center;
    padding-top: 1rem;
  }
  
  .line {
    height: 1px;
    flex: 1 1 0%;
    background-color: black;
  }
  
  .social-message .message {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: black;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
  }
  
  .social-icons .icon {
    border-radius: 0.125rem;
    padding: 0.75rem;
    border: none;
    background-color: transparent;
    margin-left: 8px;
  }
  
  .social-icons .icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: black;
  }
  
  .signup {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    color: black;
  }
  