-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
137 lines (115 loc) · 2.45 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap');
*{
transition: all 0.5s;
outline:none;
}
body{
font-family: 'Inter', sans-serif;
background: #f5f5f5;
}
.main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30vw;
height: 55%;
background: #fff;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; border-radius: 10px;
display: grid;
grid-template-rows: 25% 60% 15%;
font-family: Inter, sans-serif;
}
.main-sgnup {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30vw;
height: 55%;
background: #fff;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; border-radius: 10px;
display: grid;
grid-template-rows: 25% 60% 15%;
font-family: Inter, sans-serif;
}
.greetings {
font-size: 2rem;
font-weight: bold;
text-align: center;
color: #000;
padding: 40px;
}
.sub-greeting{
font-size:0.6em; font-weight: 500; color:rgba(0,0,0,0.3);
}
.form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px 40px;
}
.form input {
width: 90%;
height: 44px;
border: 1px solid #ccc;
border-radius: 10px;
padding: 0 5%;
margin: 1rem auto;
font-size: 1.1rem;
}
.submit-btn {
transition: all 0.5s;
border: none !important;
background: #0066FF;
color: #fff;
border: none;
}
.submit-btn:hover {
background:#005CE6;
color: #fff;
border: 0px;
border: none !important;
}
.btn {
width: 60% !important;
height: 46px;
border-radius: 10px;
padding: 0 10px;
margin: 0.5rem auto !important;
font-size: 1.2rem;
cursor: pointer;
}
.sgnup-submit {
display: flex;
width: 90%;
justify-content: center;
align-items: center;
margin: 0rem auto;
}
.forgot{
text-align: center;
}
.forgot a{
color: #0066FF;
font-size: 0.9em;
text-decoration: none;
}
.forgot a:hover{
color:#005CE6;
font-size: 0.9em;
text-decoration: none;
}
@media screen and (max-width: 1000px) {
.main {
width: 50vw;
height: 55%;
}
}
@media screen and (max-width: 600px) {
.main {
width: 80vw;
height: 55%;
}
}