68 lines
1.2 KiB
CSS
68 lines
1.2 KiB
CSS
/* style.css */
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f0f0f0;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
width: 400px;
|
|
background: #fff;
|
|
padding: 40px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 30px;
|
|
font-size: 28px;
|
|
color: #333;
|
|
}
|
|
|
|
input[type="text"], input[type="password"] {
|
|
width: 100%;
|
|
padding: 12px;
|
|
margin: 10px 0;
|
|
box-sizing: border-box;
|
|
border: 1px solid #ccc;
|
|
border-radius: 6px;
|
|
background-color: #f8f8f8;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 10px 0;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
font-size: 18px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #4CAF50;
|
|
font-size: 14px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
color: #45a049;
|
|
}
|