body {
    background-color: white;
    color: white;
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    place-items: center;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 400px;
    height: 450px;
    border-radius: 10px;
    background-color: rgb(114, 189, 76);
    box-shadow: 0 3px 6px 4px rgba(0,0,0, .1);
    padding: 10px;
  }

  .rhabit-wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 2%;
  }

  .rhabit-logo {
    width: 100px;
    height: 100px;
  }
  
  .header {
    font-size: 36px;
    font-weight: bold;
  }
  
  .btn {
    height: 35px;
    width: 120px;
    border-radius: 4px;
    background-image: #EDF2F7;
    border: none;
    outline: none;
    color: black;
    box-shadow: 0 3px 6px rgba(0,0,0, .1);
  }
  
  .btn:hover {
    cursor: pointer;
  }
  
  .form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    place-items: center;
  }
  
  input {
    height: 35px;
    width: 320px;
    border-radius: 4px;
    background-color: #fff;
    color: black;
    outline: none;
    border: none;
    margin: 10px 0;
    padding: 10px;
  }
  
  input:focus {
    border: 2px solid rgb(243 85 144);
    outline: none;
  }
  .error {
    color: black;
    margin: 10px 0;
    font-weight: bold;
  }
  
  .link-wrapper {
    display: none;
    flex-direction: column;
    margin: 75px 0;
    place-items: center;
    opacity: 0;
    transition: scale 1s ease-in-out;
    scale: 0;
  }
  
  .link-text {
    font-weight: bold;
    color: white;
    margin: 5px 0;
  }
  
  .short-link {
    display: flex;
    place-items: center;
    place-content: center;
    width: 300px;
    height: 50px;
    background-color: #EDF2F7;
    border-radius: 4px;
    padding: 10px;
    margin: 10px;
    color: black;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0, .1);
  }
  
  .loader {
    width: 40px;
    height: 40px;
  }