body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #cb43b0;
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    text-align: center;
    background: rgb(231, 210, 226);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(116, 33, 120, 0.1);
}

h1 {
    margin-bottom: 10px;
}

input {
    padding: 10px;
    width: 200px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    border: none;
    background-color: #c850bc;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #ef26ec;
}

p {
    font-size: 18px;
    font-weight: bold;
}