body {
font-family: Poppins, sans-serif;
background: #eeeeee;
color: white;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}

.container {
max-width: 420px;
width: 100%;
background: #2B14A3;
padding: 25px;
border-radius: 20px;
text-align: center;
margin: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h1 {
color: #f97316;
margin-top: 10px;
margin-bottom: 15px;
}

input {
width: 100%;
padding: 14px;
margin: 10px 0;
border: none;
border-radius: 10px;
font-size: 1rem;
box-sizing: border-box;
}

.btn {
width: 100%;
padding: 16px;
background: #f97316;
color: white;
font-weight: bold;
border: none;
border-radius: 12px;
cursor: pointer;
font-size: 1rem;
margin-top: 5px;
transition: 0.2s;
}

.btn:hover {
opacity: 0.9;
}

.places {
margin-top: 10px;
font-weight: bold;
}

.warning {
background: rgb(230, 0, 0);
color: white;
padding: 12px;
border-radius: 12px;
margin-top: 10px;
}

.footer {
color: white;
font-size: 0.8rem;
margin-top: 15px;
}