-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.css
127 lines (107 loc) · 2.12 KB
/
sign_up.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
@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: none;
transition: all .2s linear;
}
.container{
display: flex;
justify-content: center;
align-items: center;
padding:25px;
min-height: 100vh;
background: linear-gradient(90deg, #424242 60%, #202020 40.1%);
}
.container form{
padding:20px;
width:700px;
background: #fff;
box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
.container form .row{
display: flex;
flex-wrap: wrap;
gap:15px;
}
.container form .row .col{
flex:1 1 250px;
}
.container form .row .col .title{
font-size: 20px;
color:#333;
padding-bottom: 5px;
text-transform: uppercase;
}
.container form .row .col .inputBox{
margin:15px 0;
}
.container form .row .inputBox span{
margin-bottom: 10px;
display: block;
}
.container form .row .col .inputBox input{
width: 100%;
border:1px solid #ccc;
padding:10px 15px;
font-size: 15px;
text-transform: none;
}
.container form .row .col .inputBox input:focus{
border:1px solid #000;
}
.container form .row .col .flex{
display: flex;
gap:15px;
}
.container form .row .col .flex .inputBox{
margin-top: 5px;
}
.container form .row .col .inputBox img{
height: 34px;
margin-top: 5px;
filter: drop-shadow(0 0 1px #000);
}
.container form .submit-btn{
width: 100%;
padding:12px;
font-size: 17px;
background: #000000;
color:#fff;
margin-top: 5px;
cursor: pointer;
}
.container form .submit-btn:hover{
background: #2ecc71;
}
.sign_up_fields_grid {
display: grid;
grid-template-columns: auto auto;
column-gap: 0px;
row-gap: 10px;
grid-row-start: 2;
}
.inputBox {
width: 100%;
border:1px solid #ccc;
padding:10px 15px;
font-size: 15px;
text-transform: none;
}
.inputBox:focus {
border:1px solid #000;
}
.sign_up_fields_form_div {
display: flex;
flex-direction: column;
row-gap: 10px;
}
.sign_up_status_box {
display: none;
flex-wrap: wrap;
border:1px solid #424242;
padding: 10px;
border-radius: 6px;
}