-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (54 loc) · 942 Bytes
/
styles.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
*{
box-sizing: border-box;
margin: 0;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container{
background-color: #3a0a4d;
padding: 20px;
min-width: 500px;
height: 450px;
border: none;
border-radius: .5rem;
}
#sign-up{
margin-left: 10px;
font-size: 25px;
font-weight: bold;
color: #e9dfed;
margin-bottom: 10px;
}
.form-field{
font-size: larger;
padding: 10px;
margin: 10px;
border-radius: 5px;
color: #e8dbee;
background-color: #641087;
display: flex;
align-items: center;
justify-content: space-between;
}
.form-field-error{
background-color: rgba(212, 14, 14, 0.648);;
}
.form-field > input{
width: 300px;
padding: 5px;
}
.cheak-box{
margin-right: 190px;
cursor: pointer;
}
.submit{
padding: 5px 128px;
margin-left: auto;
}
.submit:hover{
cursor: pointer;
}