body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* beautiful background color */
}

h1, h2 {
    text-align: center;
    margin-top: 50px;
    color: #333; /* default color for titles */
    transition: color 0.3s ease-in-out; /* hover animation */
}

h1:hover, h2:hover {
    color: #ff5733; /* hover color for titles */
}

form {
    text-align: center;
    margin-top: 20px;
}

label {
    display: inline-block;
    margin-bottom: 10px;
}

input[type="text"] {
    padding: 10px;
    border-radius: 20px; /* rounded edges for textbox */
    border: 1px solid #ccc;
    transition: border-color 0.3s ease-in-out; /* transition for textbox border */
}

input[type="text"]:focus {
    border-color: #ff5733; /* border color on focus */
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #ff5733; /* button background color */
    color: #fff;
    border: none;
    border-radius: 20px; /* rounded edges for button */
    cursor: pointer;
    transition: background-color 0.3s ease-in-out; /* transition for button background */
}

input[type="submit"]:hover {
    background-color: #ff7853; /* button background color on hover */
}