/* Set the base styling for the body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Apply a gradient background */
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
    margin: 0;
    padding: 0;
    /* Center the content horizontally and vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Set the default text color */
    color: #000;
}

/* Style the header */
header {
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffcc33, #ff66cc);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style the header text */
header h1 {
    margin: 0;
    font-size: 32px;
    font-family: 'Pacifico', cursive;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}



/* Style the form container */
form {
    /* Apply a semi-transparent background */
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    /* Add a subtle shadow effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 300px;
    /* Apply a blur effect to the background */
    backdrop-filter: blur(10px);
}

/* Style the labels */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Style the input fields */
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #000;
}

/* Style the placeholder text */
input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Style the button */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #e74c3c;
    color: white;
    font-size: 16px;
    cursor: pointer;
    /* Add a transition effect for the background color */
    transition: background-color 0.3s ease;
}

/* Change the button background color on hover */
button:hover {
    background-color: #c0392b;
}

/* Style the paragraph element for displaying the result */
p {
    margin-top: 20px;
    font-size: 18px;
}
