-
Notifications
You must be signed in to change notification settings - Fork 10
/
regstyle.css
75 lines (72 loc) · 1.34 KB
/
regstyle.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
body {
background-color: #f2efeb;
display: flex;
align-items: center;
justify-content: space-around;
padding-top: 2%;
font-family: Sedan;
text-align: left;
color: #000000;
height: 700px;
}
.heading {
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 44px;
letter-spacing: 0.01em;
}
.form {
font-size: 18px;
width: 23%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.forms {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
width: 100%;
}
input {
padding: 5%;
background-color: #cececb;
width: 100%;
border: none;
margin: 8px 0 20px 0;
border-radius: 10px;
}
.forms select {
width: 100%;
padding: 10px;
background-color: #cccbc9;
border: none;
border-radius: 10px;
color: #2c2c2c;
margin-bottom: 10px;
}
.forms label {
align-self: flex-start;
}
.btn {
background-color: #ffa41c;
border: none;
width: 80%;
color: rgb(10, 10, 10);
padding: 10px 30px;
text-align: center;
margin-top: 50px;
display: flex;
display: grid;
text-decoration: none;
display: inline-block;
font-size: 18px;
letter-spacing: 1px;
}
.btn:hover {
background-color: white;
border: 2px solid rgb(251, 14, 14);
}