body {
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    background-image: url('images/background.png');
    background-size: cover;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
     padding-left: 20px;
    height: 100vh;
    width: 100%;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: Poppins;
  }

  .logo {
    text-align: center;
    height: 45px;
    width: 211px;
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .glasses {
    text-align: center;
    height: 118px;
    width: 190px;
    margin-bottom: 30px;
  }

  .create-button {
    margin-top: 30px;
  }

  .heading-email-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
   
    align-items: start;
    margin-bottom: 0px;
  }

  .heading {
    font-size: 28px;
    font-weight: bold;
    text-align: start;
  }

  .for-text {
    font-size: 12;
    font-weight: 400;
    margin-top: 0px;
  }

  .email {
    font-size: 14px;
    font-weight: 500;
  }
  
  .password-text {
    font-size: 15px;
    text-align: start;
  }

  .create-button {
    background-color: #416594;
    width: 209px;
    height: 54px;
    color: white;
    font-size: 16;
    padding: 10px 20px;
    border-radius: 32px;
    border-color: transparent;
    cursor: pointer;
  }

  .input {
    height: 48px;
    width: 325px;
    border-radius: 7px;
    background-color: transparent;
    color: white;
    border-color: white;
    font-size: 15px;
  }

  .password-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    text-align: left;
    margin-bottom: 20px;
  }

  .success {
    text-align: center;
    font-size: 18px;
  }

  .show-ui {
    display: block;
  }

  .hide-ui {
    display: none !important;
  }

 