35 lines
578 B
CSS
35 lines
578 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #eef2f7;
|
|
text-align: center;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.container {
|
|
background-color: white;
|
|
padding: 30px;
|
|
width: 320px;
|
|
margin: auto;
|
|
border-radius: 10px;
|
|
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
input {
|
|
padding: 10px;
|
|
width: 80%;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
background-color: #28a745;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #1e7e34;
|
|
} |