-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathform.css
More file actions
99 lines (85 loc) · 1.33 KB
/
Copy pathform.css
File metadata and controls
99 lines (85 loc) · 1.33 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
margin: 0;
padding: 0;
background: #f2f5f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.form-container {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
}
.form-container h2 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
form label {
display: block;
font-weight: 500;
margin-bottom: 6px;
color: #444;
}
form input,
form textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 8px;
margin-bottom: 15px;
font-size: 14px;
transition: 0.2s;
}
form input:focus,
form textarea:focus {
border-color: #007bff;
outline: none;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
form textarea {
resize: none;
height: 100px;
}
button {
width: 100%;
padding: 12px;
background: #007bff;
color: white;
border: none;
margin: 10px;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: #0056b3;
}
span {
color: red;
font-size: 14px;
margin: 5px 0 10px 0;
display: block;
}
#msg-err {
display: none;
}
#email-err {
display: none;
}
#name-err {
display: none;
}
.show {
display: none;
}