-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
22 lines (22 loc) · 894 Bytes
/
Copy pathstyle.css
File metadata and controls
22 lines (22 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.form-container {
background: #fff;
padding: 30px 40px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
width: 320px;
}
.form-container h2 { text-align: center; margin-bottom: 20px; }
.form-container label { display: block; margin-top: 12px; margin-bottom: 4px; font-size: 14px; }
.form-container input { width: 100%; padding: 8px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 4px; }
.form-container button { width: 100%; margin-top: 20px; padding: 10px; background-color: #4CAF50; color: white; border: none; border-radius: 4px; cursor: pointer; }
.form-container button:hover { background-color: #45a049; }
.form-container p { text-align: center; margin-top: 15px; font-size: 14px; }