.custom-form-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.custom-form-container body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.custom-form-container .container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Increased width */
    margin: 20px auto;
}

.custom-form-container h1 {
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
}

.custom-form-container form {
    margin-bottom: 30px;
}

.custom-form-container label {
    display: block;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #555;
}

.custom-form-container input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.2rem;
}

.custom-form-container button {
    background-color: #0070ba;
    color: white;
    padding: 10px 15px; /* Top and bottom padding changed to 10px */
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-bottom: 12px;
}

.custom-form-container button:hover {
    background-color: #005b99;
}

.custom-form-container .result {
    margin-top: 30px;
    font-size: 1.4rem;
}

.custom-form-container .result p {
    margin-bottom: 15px;
}

/* Responsive design for smaller devices */
@media (max-width: 768px) {
    .custom-form-container .container {
        padding: 0px; /* Adjusted padding for medium devices */
    }

    .custom-form-container h1 {
        font-size: 1.8rem;
    }

    .custom-form-container label, 
    .custom-form-container input, 
    .custom-form-container button, 
    .custom-form-container .result p {
        font-size: 1.1rem; /* Slightly smaller font size */
    }
}

@media (max-width: 480px) {
    .custom-form-container .container {
        padding: 20px; /* Adjusted padding for smaller devices */
    }

    .custom-form-container h1 {
        font-size: 1.5rem;
    }

    .custom-form-container input, 
    .custom-form-container button {
        padding: 10px; /* Padding for input and button */
        font-size: 1rem;
    }

    .custom-form-container .result {
        font-size: 1.2rem;
    }
}


.fiverr-fee-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 700px;
}


input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.2rem;
}


.paypal-calculator {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 700px;
	margin-top: 20px
}


button {
    background: #0070ba;
    color: white;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-bottom: 18px;
}
