body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;  /* Dark background for the whole page */
    color: #e0e0e0;  /* Lighter text color for better readability on dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    background-color: #333;  /* Dark background for the form container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;  /* Makes sure the form is not too wide on larger screens */
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"], button {
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #555;  /* Dark borders blend better with the theme */
    background-color: #222;  /* Dark input fields */
    color: #ddd;  /* Lighter text color for inputs */
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #bb86fc;  /* A pop of color for focus */
    outline: none;
}

button {
    background-color: #ff00aa;  /* A vibrant color for the button */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff00aa72;  /* Darken the button on hover for a subtle effect */
}

/* Additional style to improve spacing and interaction */
h1 {
    margin-bottom: 20px;
    color: #ff00aa;  /* Color theme matching the button */
}

  