
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

       

        .container360 {
            margin: 20px auto; /* Centered with small top/bottom margin on mobile */
            max-width: 1000px;
            width: 95%; /* Takes up most of the screen on mobile */
            border-radius: 12px;
            padding: 20px; /* Rtrustced padding for mobile screens */
            background-color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        header360 {
            font-size: 28px;
            font-weight: 600;
            color: #1a2b3c;
            margin-bottom: 30px;
            border-left: 5px solid #160f77;
            padding-left: 15px;
        }

        form .title {
            display: block;
            font-size: 16px;
            font-weight: 600;
            margin: 25px 0 15px;
            color: #160f77;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        form .fields {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .input-field {
            display: flex;
            width: calc(100% / 3 - 14px);
            flex-direction: column;
        }

        .input-field label {
            font-size: 13px;
            font-weight: 500;
            color: #666;
            margin-bottom: 5px;
        }

        .input-field input, .input-field select, textarea {
            outline: none;
            font-size: 14px;
            border-radius: 6px;
            border: 1px solid #ddd;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .input-field input:focus, .input-field select:focus {
            border-color: #160f77;
            box-shadow: 0 0 5px rgba(1, 187, 191, 0.2);
        }

        /* Payment Grid */
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }

        .payment-card {
            cursor: pointer;
            border: 2px solid #eee;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: 0.3s;
            position: relative;
        }

        .payment-card input { display: none; }

        .payment-card i {
            font-size: 24px;
            color: #160f77;
            display: block;
            margin-bottom: 8px;
        }

        .payment-card span { font-size: 13px; font-weight: 500; color: #333; }

        .payment-card.selected {
            border-color: #160f77;
            background-color: #f0fbfc;
        }

        .submit {
            display: block;
            width: 100%;
            max-width: 300px;
            height: 55px;
            border: none;
            color: #fff;
            border-radius: 8px;
            margin: 40px auto 0;
            background-color: #675cf9;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: 0.3s;
        }

        .submit:hover { background-color: #160f77; transform: translateY(-2px); }

        @media (max-width: 768px) {
            .input-field { width: calc(100% / 2 - 10px); }
        }

        @media (max-width: 480px) {
            .input-field { width: 100%; }
            .container360 { padding: 20px; }
        }

/* Tablet and Desktop styles */
@media (min-width: 1024px) {
    .container360 {
        margin-left: 15%;
        margin-right: 15%;
        width: auto; /* Allows margins to take effect */
        padding: 40px; /* More breathing room for desktop */
    }
}

/* Responsive adjustments for fields */
@media (max-width: 768px) {
    .input-field { 
        width: calc(100% / 2 - 10px); 
    }
}

@media (max-width: 480px) {
    .input-field { 
        width: 95%; 
    }
    .container360 {
        width: 95%;
        margin: 2px auto;
        border-radius: 0; /* Optional: square edges look better on tiny phones */
    }
}






    