    /* auth.css */

    :root {
        --bs-body-font-family: 'Poppins', sans-serif;
        --bs-body-font-size: 16px;
      }
      

    /* set font to poppins */
    body {
        font-family: 'Poppins', sans-serif;
    }

    body.auth-body {
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
    }
    
    .auth-container {
        width: 100%;
        max-width: 400px;
        padding: 20px;
    }
    
    /* Login Card Styling */
    .login-card {
        background: #fff;

        padding: 30px;
    }
    
    /* Logo container */
    .logo-container {
        text-align: center;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .logo-container img {
        max-width: 200px;
        height: auto;
    }
    
    /* Login title */
    .login-title {
        text-align: center;
        margin-bottom: 20px;
        padding-top: 20px;
        font-size: 18px;
        font-weight: 100;
        font-family: 'Poppins', sans-serif;
        /* light font size */
        font-style: light;
    }
    
    /* Optional: customize the form control focus state */
    .login-form .form-control:focus {
        box-shadow: none;
        border-color: #007bff;
    }

    .login-button {
        font-size: 15px;
        background-color: #007bff;
        text-align: center;
        width: 100%;
        color: #fff;
        border-radius: 0;
        padding: 10px;
        border: none;
        cursor: pointer;
        border-radius: 2px;
    }
    
    .login-button:hover {
        background-color: #0056b3;
    }

    .login-form-field {
        margin-bottom: 10px;
        margin-top: 10px;
        padding-bottom: 2px;
        padding-top: 2px;
    }

    .login-form-field label {
        font-size: 14px;
        font-weight: 500;
    }

    .login-form-field input {
        border-radius: 2px;
        border: 1px solid #ddd;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Force inputs to use Poppins and a consistent size */
    .login-form-field input.form-control,
    .login-form-field input.form-control:focus {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
    }

    /* Optional: customize the form control focus state */
    .login-form .form-control:focus {
        box-shadow: none;
        border-color: #007bff;
    }

    .form-control {
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
    }