body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #706e6e;
}

.container {
    text-align: center;
    background: rgb(252, 228, 228);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background-color: #14743c;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #1f5f2d;
}

input {
    margin-top: 10px;
    padding: 10px;
    width: 200px;
}