body {
        font-family: "Titillium Web", sans-serif;
        font-weight: 400;
        font-style: normal;
        display: flex;
        justify-content: center; 
        align-items: center; 
        min-height: 100vh; 
        margin: 0; 
        background-color: #f1f1f1; 
      
      }

      .bg-image {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        height: 100vh; 
        width: 100vw; 
        position: fixed; 
        top: 0;
        left: 0;
        z-index: -1; 
      }

      .login-container {
        max-width: 400px;
        width: 100%;
        height: 100%;
      }

      .form-card {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 10px;
      }
      .password-wrapper {
        position: relative;
      }

      .password-wrapper .eye-icon {
        position: absolute;
        right: 10px;
        top: 80%;
        transform: translateY(-80%);
        cursor: pointer;
        color: #a2a2a2; 
      }

      .spinner-container {
        display: none;
        text-align: center;
      }
     
      .bg-gradient-header {
       background: #03b855;
      }

      .btn-gradient {
        background: linear-gradient(to right, #02c577, #03b855); 

        border: none;
        padding: 0.5rem 1.25rem;
        font-weight: 600;
      }



