form {
    margin-top: 20px; /* Add margin to the top of the form */
    margin-left: 350px; /* Add margin to the left of the form */
    border: pink 4px dotted; /* Add border around form*/
    padding: 10px;
    display: inline-block;
    text-align: left;
}

label {
   
    margin-bottom: 5px; /* Add margin to the bottom of each label */
}
 /* CSS styles for the submit button */
 input[type="submit"] {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor style */
}

/* Hover effect for the submit button */
input[type="submit"]:hover {
    background-color: #45a049;} /* Darker green background on hover */

input[type="text"],
input[type="submit"]{
    margin-bottom: 10px;} /* Add margin to the bottom of text inputs and submit button */
p, h1{text-align: center; margin-left: 20px; margin-right: 20px;}
body{margin: auto, 50px;}