-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (78 loc) · 1.63 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
*{
font-family: 'Poppins', sans-serif;
margin:0; padding:0;
box-sizing: border-box;
outline: none; border:none;
text-transform: capitalize;
transition: all .2s linear;
}
.container1{
display: flex;
justify-content: center;
align-items: center;
padding:25px;
min-height: 100vh;
background: linear-gradient(90deg, #2d2a29 60%, #232120 40.1%);
}
.container1 form{
padding:20px;
width:700px;
background: #fff;
box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
.container1 form .row{
display: flex;
flex-wrap: wrap;
gap:15px;
}
.container1 form .row .col{
flex:1 1 250px;
}
.container1 form .row .col .title{
font-size: 20px;
color:#333;
padding-bottom: 5px;
text-transform: uppercase;
}
.container1 form .row .col .inputBox{
margin:15px 0;
}
.container1 form .row .col .inputBox span{
margin-bottom: 10px;
display: block;
}
.container1 form .row .col .inputBox input{
width: 100%;
border:1px solid #ccc;
padding:10px 15px;
font-size: 15px;
text-transform: none;
}
.container1 form .row .col .inputBox input:focus{
border:1px solid #000;
}
.container1 form .row .col .flex{
display: flex;
gap:15px;
}
.container1 form .row .col .flex .inputBox{
margin-top: 5px;
}
.container1 form .row .col .inputBox img{
height: 34px;
margin-top: 5px;
filter: drop-shadow(0 0 1px #000);
}
.container1 form .submit-btn{
width: 100%;
padding:12px;
font-size: 17px;
background: #a92f14;
color:#fff;
margin-top: 5px;
cursor: pointer;
}
.container1 form .submit-btn:hover{
background: #c33721;
}