-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
86 lines (84 loc) · 1.56 KB
/
form.css
File metadata and controls
86 lines (84 loc) · 1.56 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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: "Montserrat", sans-serif;
}
.form-container {
background-color: black;
max-width: 30%;
width: 25%;
margin: auto;
margin-top: 7%;
border-radius: 20px;
}
.form-header {
height: 220px;
display: flex;
justify-content: center;
align-items: center;
}
.form-header .logo {
width: 85px;
height: 85px;
background-color: #ffffff;
border-radius: 20% 20% 20% 0;
display: flex;
align-items: center;
justify-content: center;
}
.logo div {
height: 30px;
width: 30px;
background-color: #000000;
border-radius: 30px 30px 30px 0;
}
#form {
background-color: #e4e4e4e1;
padding: 15%;
display: flex;
justify-content: center;
align-items: center;
border-top-left-radius: 23%;
}
form input {
border: none;
outline: none;
font-size: 15px;
font-weight: 600;
opacity: 0.3;
padding-top: 5px;
}
#form .input-wrapper {
padding: 20px;
height: 70px;
font-weight: 500;
font-size: 15px;
display: block;
text-transform: capitalize;
margin-bottom: 5%;
border: none;
border-radius: 15px 0 15px 15px;
background: #ffffff;
box-shadow: 20px 20px 100px #f5f5f5, -20px -20px 100px #ffffff;
}
#form div {
margin-bottom: 34px !important;
}
button {
border-radius: 15px 0 15px 15px;
background: #000000;
box-shadow: 20px 20px 100px #f5f5f5, -20px -20px 100px #ffffff;
color: #ffffff;
width: 100%;
height: 50px;
text-transform: capitalize;
border: none;
outline: none;
}
p {
margin-top: 15%;
font-weight: 500;
font-size: 15px;
text-align: center;
}