        .SFC-container {
            max-width: 800px;
            min-height: 300px;
            margin: 50px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

		.SFC-form-container {
            min-height: 300px;
            width: 55%;
            text-align: left;
        }

        .SFC-image-container {
            min-width: 200px;
            min-height: 200px;
            width: 40%;
            text-align: center;
        }

        .SFC-container form {
            display: inline-block;
			width: 100%;
            vertical-align: top;
        }

        .SFC-form-group {
            margin-bottom: 8px;
            display: flex;
            flex-direction: column;	
        }

        .SFC-container label {
            font-size: 12px;
            font-weight: bold;
            color: #555;
            margin-bottom: 2px;
        }

        .SFC-container input, select {
            width: 100%; /* Ensures they all take the full width of the container */
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
            box-sizing: border-box; /* Ensures padding does not increase width */
        }

        .SFC-hidden {
            display: none !important;
        }

        .SFC-button-container {
            display: flex;
            justify-content: space-between; /* Positions one button on the left and the other on the right */
            width: 100%; /* Ensures the buttons take the full container width */
            margin-top: 10px;
        }

        .SFC-container .back-btn {
            width: 49%; /* Adjust width as needed */
            align-items: flex-end; /* Aligns content (buttons) to the right */
            padding: 10px 20px;
        }

        .SFC-button-right {
            text-align: right;
        } 

        .form-btn {
            width: 49%; /* Adjust width as needed */
            align-items: flex-start; /* Aligns content (buttons) to the right */
            padding: 10px 20px;
            border: none;
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 10px;
        }

        .form-btn:hover {
            /* background: #1e40af; */
			color: #E5F4F9;
        }

        .back-btn {
            border: none;
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 10px;
            width: 48%;
        }

        .back-btn:hover {
            /* background: #999; */
			color: #E5F4F9;
        }

        .SFC-currency-image {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid red;
        }
