h1.entry-title {
  display: none !important;
}

/* Form Container */
.visa-check-form {
    background: rgba(255, 255, 255, 0.8); /* Glass effect with transparency */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Shadow effect */
    margin: 20px auto; /* Center the form */
    max-width: 500px; /* Limit the form width */
    text-align: center; /* Center-align the content */
}

/* Input Field */
.visa-check-form input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners */
    width: 100%; /* Full-width input */
    margin-bottom: 10px; /* Space below input */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow */
}

/* Button Styles */
.visa-check-form button {
    padding: 10px 20px; /* Padding for buttons */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition */
}

/* Submit Button */
.visa-check-form button[name="check_visa_submit"] {
    background-color: #4CAF50; /* Green */
    color: white; /* White text */
}

.visa-check-form button[name="check_visa_submit"]:hover {
    background-color: #45a049; /* Darker green on hover */
}

/* Reset Button */
.visa-check-form button[type="reset"] {
    background-color: #f44336; /* Red */
    color: white; /* White text */
}

.visa-check-form button[type="reset"]:hover {
    background-color: #d32f2f; /* Darker red on hover */
}

/* Result Area */
.visa-check-result {
    margin-top: 20px; /* Space above result */
}


html .formcraft-css .powered-by {
  display: none !important;
}
