        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', sans-serif;
        }

        body {
            overflow-x: hidden;
            font-display: swap;
        }


        .hero-section {
            /* height: 100vh; */
            width: 100%;
            background-image: url("/assets/img/tutor-signup/Non-profits-background.png");
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .main-box {
            background-color: white;
            width: 100%;
            height: 100%;
            max-width: 1200px;
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.048);
        }

        .left-box {
            width: 48%;
            background-color: #fb8503;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            border-radius: 20px;
        }

        .left-box img {
            width: 380px;
            height: 260px;
            object-fit: contain;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .left-box h1 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .left-box p {
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 600;
            color: #fff;
        }

        .right-box {
            width: 50%;
            margin-top: 40px;
            background-color: white;
            padding: 30px;
            position: relative;
            justify-content: center;
            text-align: center;
            display: flex;
            flex-direction: column
      }

        .right-box .corner-img {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            object-fit: cover;
        }

        .right-box h2 {
            color: #fb8503;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: left;
            font-weight: bold;
        }

        .form-container {
            background-image: url("/assets/img/tutor-signup/right-background.png");
            background-size: contain;
            background-position: top;
            background-repeat: no-repeat;
            background-blend-mode: overlay;
            padding: 20px;
            border-radius: 15px;
            max-width: 500px;
        }

        .form-group {
            position: relative;
            margin-bottom: 15px;
        }

        .form-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #fb8503;
        }

        .form-group i.fa-eye {
            position: absolute;
            right: 15px;
            left: unset;  
            top: 50%;
            transform: translateY(-50%);
            color: #fb8503;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 10px 20px 10px 45px;
            border: 1px solid #fb8503;
            border-radius: 50px;
            font-size: 0.95rem;
            color: #555;
            background-color: rgba(255, 255, 255, 0.8);
            height: 50px;
        }

        .row {
            display: flex;
            /* gap: 15px; */
        }

        .row .form-group {
            flex: 1;
        }

.password-wrapper {
    position: relative;
}


.password-wrapper .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fb8503;
}


.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fb8503;
    cursor: pointer;
    align-items: end;
    justify-content: end;
    display: flex;
}


.password-wrapper input {
    padding-left: 45px !important;
    padding-right: 45px !important;
    width: 100%;
}

        .checkbox-group {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }

        .checkbox-group input {
            margin-right: 8px;
            accent-color: #fb8503;
        }

        .checkbox-group label {
            color: #555;
            font-size: 0.85rem;
        }

        .button-group {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .submit-btn {
            background-color: #fb8503;
            color: white;
            border: none;
            padding: 10px 45px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #e67700;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 133, 3, 0.4);
        }

        .button-img {
            width: 60px;
            height: 30px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        @media (max-width: 1200px) {
            .main-box {
                width: 90%;
            }

            .left-box img {
                width: 320px;
                height: 220px;
            }
        }

        @media (max-width: 992px) {
            .main-box {
                flex-direction: column;
                height: auto;
            }

            .left-box, .right-box {
                width: 100%;
            }

            .left-box {
                border-radius: 30px 30px 0 0;
            }

            .right-box {
                border-radius: 0 0 30px 30px;
            }

            .left-box img {
                width: 280px;
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .main-box {
                width: 95%;
            }

            .left-box, .right-box {
                padding: 20px;
            }

            .left-box h1 {
                font-size: 1.6rem;
            }

            .right-box h2 {
                font-size: 1.3rem;
            }

            .form-container {
                padding: 15px;
            }

            .row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 576px) {
            .left-box img {
                width: 220px;
                height: 160px;
            }

            .left-box h1 {
                font-size: 1.4rem;
            }

            .right-box h2 {
                font-size: 1.1rem;
            }

            .corner-img {
                width: 60px;
                height: 60px;
            }

            .button-img {
                width: 50px;
                height: 25px;
            }
        }