    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

    @font-face {
        font-family: 'Power Grotesk';
        src: url("{{ asset('fonts/PowerGrotesk-Regular.ttf') }}") format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    .login-body {
        background: url('/assets/images/loginPattern.svg') no-repeat top center;
        background-size: contain;
        background-color: #f5f7fa;
    }

    .login-container {
        background: rgb(255, 255, 255);
        width: calc(100% - 200px);
        height: 840px;
        margin-top: 92px !important;
        margin-bottom: 92px !important;
        margin-left: 120px !important;
        margin-right: 120px !important;
        padding: 0px !important;
        box-sizing: border-box;
        border-radius: 16px;
        border-radius: 8px;
    }

    .login-bg-div {
        background: url('/assets/images/loginBg.png') no-repeat top center;
        background-size: cover;
        width: 100%;
        height: 840px;
        border-radius: 8px;

    }

    .login-heading2 {
        font-family: 'Power Grotesk', sans-serif;
        font-weight: 400;
        font-size: 32px;
        line-height: 30px;
        letter-spacing: 0%;
        color: rgba(52, 77, 158, 1);

        width: 11cm;
        word-break: break-word;
        padding-top: 562px;
        padding-left: 72px;
    }

    .login-des {
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 18px;
        line-height: 20px;
        letter-spacing: 0%;
        color: rgba(102, 116, 162, 1);
        padding-left: 72px;
        padding-right: 108px;

        width: 14.5cm;
        word-break: break-word;
    }

    .login-form {
        padding-top: 358px;
        padding-left: 167px;
        padding-right: 167px;
        padding-bottom: 141.67px;
    }

    .login-heading {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 22px;
        line-height: 12px;
        letter-spacing: 0%;
        text-align: center;
        color: rgba(102, 116, 162, 1);
        padding-bottom: 36px;
    }

    .form-label {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 11px;
        line-height: 11px;
        letter-spacing: 0%;
        color: rgba(132, 143, 180, 1);
    }

    .form-control,
    .form-control:focus,
    .form-control:active {
        width: 100%;
        height: 50px;
        opacity: 1;
        gap: 10px;
        border-radius: 8px;
        border-width: 1px;
        padding: 16px;
        background: rgba(250, 251, 255, 1);
        border: 1px solid rgba(217, 223, 245, 1);
        outline: none;

        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 12px;
        letter-spacing: 0%;
        color: rgba(102, 116, 162, 1);
    }

    .form-control::placeholder {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 12px;
        letter-spacing: 0%;
        color: rgba(102, 116, 162, 1);
    }

    .login-btn {
        width: 100%;
        height: 48px;
        opacity: 1;
        gap: 16px;
        border-radius: 30px;
        padding-top: 8px;
        padding-right: 24px;
        padding-bottom: 8px;
        padding-left: 24px;
        background: rgba(52, 77, 158, 1);
        border: none;
        
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0%;
        color: rgba(255, 255, 255, 1);
    }

    .forgot-password-text {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 11px;
        line-height: 11px;
        letter-spacing: 0%;
        text-align: right;
        color: rgba(132, 143, 180, 1);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* Responsive Code Here */
    @media (max-width: 1200px) {
        .login-container {
            width: calc(100% - 40px);
            height: auto;
            margin: 20px !important;
        }

        .login-bg-div {
            height: 400px;
            background-position: center;
        }

        .login-heading2 {
            font-size: 24px;
            padding-top: 160px;
            width: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .login-des {
            font-size: 14px;
            width: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .login-form {
            padding: 20px;
        }
    }
