body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    border: none;
    background-color: #ecec8d;
    box-shadow: 0px 0px 5px rgba(198, 198, 198, 0.3);
    border-radius: 10px;
    overflow: hidden; /* important for rounded top corners */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin-top: 60px;
}

input{
    width: 90%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 10px;
}

button {
    padding: 10px;
    border: none;
    outline: none;
    color: white;
    background-color: #45a049;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
}