body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    background-image: linear-gradient(90deg, #1CA7EC, #1F2F98);
    margin: 0;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    margin-bottom: 1rem;
}

input {
    padding: 0.5rem;
    width: 200px;
    margin-bottom: 1rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #0056b3;
}

p {
    margin-top: 1rem;
    font-size: 1.2rem;
}
