body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #15588585;
}
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(241, 5, 5, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}
input {
    display: block;
    width: 90%;
    padding: 10px;
    margin: 10px 0;
}
button {
    background: blue;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
}
