html, body {
            margin: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            font-family: Inter, serif;
        }
        body {
            background-image: url("bg_image.png");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            flex: 1;
            overflow: hidden;
        }
        .custom-input {
            height: 56px;
            border-radius: 4px;
            border: 1px solid;
            padding: 10px;
            opacity: 1;
            box-sizing: border-box;
            background-color: #F5FBF5 !important;
            box-shadow: none;
        }
        main {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 12px;
        }
        @font-face {
            font-family: 'Inter';
            src: url('fonts/static/Inter_18pt-Regular.ttf') format('truetype');
        }
        :root{
            --bs-link-color: #1F6A4F;
            --bs-link-hover-color: #1f6a5a;
        }
        .bg-main {
            background-color: #F5FBF5 ;
        }
        .card-base {
            background-color: #F5FBF5;
            width: 456px;
        }
        .main-content {
            position: relative;
            z-index: 1;
        }
        .card-wrapper {
          display: flex;
          justify-content: center;
        }
        body:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
            pointer-events: none;
        }
        label {
            color: #404943;
        }
        input[type="checkbox"]:checked {
            background-color: #1F6A4F;
            border-color: #1F6A4F;
        }
        .btn-success {
            background-color: #1F6A4F;
            border-color: #1F6A4F;
        }

        .btn-success:hover {
            background-color: #1F6A4F;
            border-color: #1F6A4F;
        }

        .error-text {
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            letter-spacing: 0.1px;
            text-align: left;
        }
        .form-overflow {
            max-height: 60vh;
            overflow: auto;
        }
