
body {
    background: #fdf6e3;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.logo {
    width: 80px;
    margin-bottom: 1em;
}
button {
    display: block;
    margin: 1em auto;
    padding: 0.8em 1.5em;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #f2a900;
    color: white;
    cursor: pointer;
}
button:hover {
    background-color: #e69500;
}
