-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (66 loc) · 1019 Bytes
/
style.css
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
*{
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
font-weight: bold;
}
body{
padding: 1rem;
}
h1{
text-align: center;
}
form{
display: flex;
flex-direction: column;
gap: 0.5rem;
width: 40%;
margin: 0 auto;
}
input, select, textarea{
width: 100%;
min-width: 100%;
max-width: 100%;
padding: 10px;
border: 1px solid #ccc;
font-size: 1.1rem;
}
input:focus, select:focus, textarea:focus{
outline: none;
}
textarea{
height: 200px;
max-height: 200px;
min-height: 200px;
}
button{
padding: 10px;
border-radius: 5px;
border: none;
background-color: #333;
color: #fff;
cursor: pointer;
}
#name-error{
color:red;
display: none;
}
#email-error{
color:red;
display: none;
}
#password-error{
color:red;
display: none;
}
#confirm-error{
color:red;
display: none;
}
.g-recaptcha{
margin: 0 auto;
}
#cptcha-error{
color:red;
display: none;
margin: 0 auto;
}