-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsignup.css
79 lines (72 loc) · 1.67 KB
/
signup.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
body {
height: 100%;
}
input[type=text],
input[type=password],
input[type=email] {
background: #FFFFFF;
border: 0.5px solid #C9472C;
box-sizing: border-box;
box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
border-radius: 6px;
width: 345px;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
box-sizing: border-box;
}
.container{
margin-top: 3rem;
}
.form-style{
width: 50%;
border-radius: 10px;
border-color: #C9472C;
padding: 8px 20px;
}
@media screen and (max-width: 400px) {
.container {
overflow-x: hidden;
}
input[type=text],
input[type=password],
input[type=email] {
width: 264px;
}
}
.message {
color: rgb(177, 28, 28);
background: rgb(139, 126, 126);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
margin-top: .5rem;
display: none;
}
.passMessage{
color: rgb(177, 28, 28);
background: rgb(139, 126, 126);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
margin-top: .5rem;
display: none;
}
.emailErr{
color: rgb(177, 28, 28);
background: rgb(139, 126, 126);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
margin-top: .5rem;
display: none;
}
.errMessage{
color: rgb(177, 28, 28);
background: rgb(139, 126, 126);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
margin-top: .5rem;
display: none;
}