-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
138 lines (116 loc) · 2.52 KB
/
style1.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
*{
font-family: 'Poppins', sans-serif;
margin:0; padding:0;
box-sizing: border-box;
outline: none; border:none;
text-decoration: none;
}
.container{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding:20px;
padding-bottom: 60px;
}
.container .content{
text-align: center;
}
.container .content h3{
font-size: 30px;
color:rgb(0, 0, 0);
}
.container .content h3 span{
background: crimson;
color:rgb(0, 0, 0);
border-radius: 5px;
padding:0 15px;
}
.container .content h1{
font-size: 50px;
color:#333;
}
.container .content h1 span{
color:crimson;
}
.container .content p{
font-size: 25px;
margin-bottom: 20px;
}
.container .content .btn{
display: inline-block;
padding:10px 30px;
font-size: 20px;
background: #333;
color:rgb(0, 0, 0);
margin:0 5px;
text-transform: capitalize;
}
.container .content .btn:hover{
background: crimson;
}
.form-container{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding:20px;
padding-bottom: 60px;
background: #eee;
/* background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e); */
}
.form-container form{
padding:20px;
border-radius: 5px;
box-shadow: 0 5px 10px rgba(0,0,0,.1);
background-color: rgba(0, 255, 255, 0.152);
text-align: center;
width: 500px;
}
.form-container form h3{
font-size: 30px;
text-transform: uppercase;
margin-bottom: 10px;
color:rgb(0, 0, 0);
}
.form-container form input,
.form-container form select{
width: 100%;
padding:10px 15px;
font-size: 17px;
margin:8px 0;
background: #eee;
border-radius: 5px;
}
.form-container form select option{
background: #fff;
}
.form-container form .form-btn{
background: #fbd0d9;
color:crimson;
text-transform: capitalize;
font-size: 20px;
cursor: pointer;
}
.form-container form .form-btn:hover{
background: crimson;
color:rgb(0, 0, 0);
}
.form-container form p{
margin-top: 10px;
font-size: 20px;
color:rgb(0, 0, 0);
}
.form-container form p a{
color:crimson;
}
.form-container form .error-msg{
margin:10px 0;
display: block;
background: crimson;
color:rgb(0, 0, 0);
border-radius: 5px;
font-size: 20px;
padding:10px;
}