body { 
    font-family: sans-serif;
    background-color: #6d4c41;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
 }
 
.container { 
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    color: #333;
    width: 100%;
    max-width: 400px;
    text-align: center;
 }

h1 { 
    color: #2e7d32;
 }

input { 
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
 }

button { 
    width: 100%;
    padding: 10px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
 }

button:hover { 
    background-color: #1b5e20;
 }

button.secondary { 
    background-color: #757575;
 }

.message { 
    margin-top: 15px;
    font-size: 0.9rem;
 }

.hidden { 
    display: none;
 }