html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  
  /* Login container anchored to right side */
  .login-box-container {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
  }
  
  /* Login box */
  .login-box {
    background-color: #fff;
    padding: 60px 40px 10px 40px ;
    border-radius: 20px;
    width: 100%;
    /* height: 940px; */
    max-width: 700px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  .form-control {
    display: block;
    width: 80% !important;
  }
  
  /* Login button */
  .btn-login {
    background-color: #2FC18B;
    color: #000000;
    font-weight: 600;
    width: 80%;
    height: 50px;
  }
  
  .btn-login:hover {
    background-color: #1cc4ae;
  }
  .future{
    font-size: 57px;
    font-weight: 700;
    color: #2FC18B
  }
  .create{
    font-size: 57px;
    font-weight: 700;
    /* line-height: 75px; */
    /* color: #2FC18B */
  }
  .text-muted{
    margin-top: 80px;
  }
  .input-group.custom-input {
    width: 80%;
  }
  
  .input-group.custom-input .input-group-text {
    padding: 0.5rem 0.75rem;
    border-radius: 6px 0 0 6px;
    border-right: none;
  }
  
  .input-group.custom-input .form-control {
    border-left: none;
    border-radius: 0 6px 6px 0;
    box-shadow: none;
  }
  
  .input-group.custom-input img {
    width: 20px;
    height: 15px;
  }
  .pass{
    height: 20px !important;
  }
  .text-mute{
    font-weight: 500;
    font-size: 20px;
  }

  @media screen and (max-width: 440px) {
    .login-box-container {
      position: fixed;
      top: 40px;
      right: 10px;
      left: 10px;
      bottom: 20px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      z-index: 1;
    }
    .login-box {
      text-align: ;
      background-color: #fff;
      padding: 40px 10px 10px 10px ;
      border-radius: 20px;
      width: 100%;
      /* height: 940px; */
      max-width: 700px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }
  }