-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegFormCss.css
More file actions
121 lines (101 loc) · 2.05 KB
/
Copy pathRegFormCss.css
File metadata and controls
121 lines (101 loc) · 2.05 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
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
*{
margin: 0;
padding: 0;
box-shadow: border-box;
}
body{
font-family: sans-serif;
display: flex;
height: 100vh;
justify-content: center;
align-items: center ;
background-image: linear-gradient( 135deg , rgb(103, 167, 252) , rgb(202, 93, 252));
}
#form{
height: auto;
width: 480px;
padding: 20px;
margin: 30px;
border-radius: 5px;
background-color: rgb(255, 255, 255);
}
.details{
display: flex ;
flex-wrap: wrap;
justify-content: center;
height: 100%;
width: 100%;
column-gap: 2%;
}
.details .inputtag{
margin: 8px 0;
font-size: 15px;
height: 55px;
width: 48%;
}
.details input {
width: 100%;
height: 40px;
margin-top: 3px;
border-radius: 2px;
border-color: rgb(160, 160, 160) ;
border-left-color:rgb(160, 160, 160) ;
border-top-color:rgb(160, 160, 160) ;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
width: 100%;
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 14px;
box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
border-color: rgb(169, 92, 241);
outline: none;
}
.reg{
margin-bottom: 15px;
font-style: oblique;
font-size: 20px;
font-weight: 50px;
position: relative;
}
.reg h3{
color: rgb(98, 98, 250);
font-weight: bold;
}
button {
width: 100%;
padding: 10px;
background-image: linear-gradient( 135deg , rgb(83, 83, 255) , rgb(191, 120, 250));
color: white;
font-size: 16px;
font-weight: bold;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-image: linear-gradient(135deg, rgb(191, 120, 250), rgb(83, 83, 255));
}
.gen {
display: flex;
flex-wrap: wrap;
justify-self: center;
align-items: center;
font-size: 15px ;
width: 100%;
margin-left: 5px;
}
.gen span{
margin: 13px 0;
column-gap: 2%;
}