* {
box-sizing: border-box;
}


body {
margin: 0;
height: 100vh;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
background: #ffffff;
color: #064e3b;
}


.container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}


.card {
background: #dcfce7;
padding: 2.5rem 3rem;
border-radius: 12px;
width: 420px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
text-align: center;
border: 2px solid #064e3b;
}


.card h1 {
margin-bottom: 0.5rem;
}


.card p {
margin-bottom: 2rem;
color: #065f46;
}


input {
width: 100%;
padding: 12px;
border-radius: 6px;
border: 1px solid #064e3b;
font-size: 16px;
margin-bottom: 1.5rem;
background: #ffffff;
color: #064e3b;
}


button {
width: 100%;
padding: 12px;
font-size: 16px;
font-weight: 600;
border: none;
border-radius: 6px;
background: #16a34a;
color: white;
cursor: pointer;
transition: background 0.2s ease;
}


button:hover {
background: #15803d;
}