-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (47 loc) · 990 Bytes
/
style.css
File metadata and controls
53 lines (47 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
background-image: url(https://images.pexels.com/photos/259915/pexels-photo-259915.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
background-position: center;
}
.form-container {
width: 36%;
padding: 20px 35px;
border: 1px solid #2e2a2aed;
border-radius: 8px;
background: #d3c8c8a8;
}
label {
display: block;
margin-top: 10px;
}
input {
width: 100%;
padding: 8px;
margin-top: 5px;
margin-bottom: 10px;
border-radius: 4px;
border: 1px solid #ccc;
}
.error-message {
color: red;
font-size: 0.9em;
display: block;
margin-top: -8px;
margin-bottom: 10px;
}
button {
padding: 10px 42px;
color: white;
background-color: #000;
border: none;
border-radius: 4px;
cursor: pointer;
margin-left: 35%;
}
button:hover {
background-color: #975959;
}