* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .gradient-border {
        padding: 3px; /* Border thickness */
        background: linear-gradient(135deg, #c3aed6, #a6c1ee); /* Soft purple to blue */
        border-radius: 50%;
        display: inline-block;
    box-shadow: -1px -6px 8px rgb(187 142 227 / 71%), -3px 4px 16px rgb(76 128 213 / 60%), 7px 4px 24px rgb(181 139 219 / 20%);
  }
  
      .display-logo .content {
        background: white;
        border-radius: 50%;
        height: 3em;
        width: 3em;
        font-family: sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
      }
  .login-container {
    height: 100vh;
    display: flex;
    width: 100%;
    justify-content: start;
    align-items: center;
    padding: 2em 1em;
    flex-direction: column;
      z-index: 9999;
      position: relative;
      background: #fff;
  }
  .login-container .intro {
    text-align: center;
    line-height: 1.6em;
    padding-top: 2em;
    color: #999;
    font-weight: 500;
  }
  .login-btn {
    background: #000;
    color: #fff;
    height: 3em;
    width: 100%;
    border-radius: 9999px;
    align-self: end;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin-top: auto;
  }