body{
font-family: Arial, sans-serif;
background:#f4f4f4;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
margin:0;
}

.container{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
width:350px;
text-align:center;
}

.logo{
width:120px;
margin-bottom:20px;
}

h2{
margin-bottom:20px;
}

label{
display:block;
text-align:left;
margin-top:15px;
}

input, select{
width:100%;
padding:10px;
margin-top:5px;
border:1px solid #ccc;
border-radius:5px;
}

.checkbox{
display:flex;
align-items:center;
gap:10px;
margin-top:15px;
}

button{
margin-top:20px;
padding:12px;
width:100%;
background:#0077cc;
color:white;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;
}

button:hover{
background:#005fa3;
}