-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
148 lines (132 loc) · 3.35 KB
/
style2.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
139
140
141
142
143
144
145
146
147
148
*{
margin: 0px;
padding: 0px;
}
.box{
/* padding: 0px;
margin: 0px; */
display: flex;
justify-content: center;
align-items: center;
background: url('loginbg.jpg');
height: 100vh;
object-fit: cover;
}
.form-container {
width: 350px;
height: 500px;
background-color: #fff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: 10px;
box-sizing: border-box;
padding: 20px 30px;
}
.title {
text-align: center;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
margin: 10px 0 30px 0;
font-size: 28px;
font-weight: 800;
}
.form {
width: 100%;
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 15px;
}
.input {
border-radius: 20px;
border: 1px solid #c0c0c0;
outline: 0 !important;
box-sizing: border-box;
padding: 12px 15px;
}
.page-link {
text-decoration: underline;
margin: 0;
text-align: end;
color: #747474;
text-decoration-color: #747474;
}
.page-link-label {
cursor: pointer;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
font-size: 9px;
font-weight: 700;
}
.page-link-label:hover {
color: #000;
}
.form-btn {
padding: 10px 15px;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
border-radius: 20px;
border: 0 !important;
outline: 0 !important;
background: teal;
color: white;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.form-btn:active {
box-shadow: none;
}
.sign-up-label {
margin: 0;
font-size: 10px;
color: #747474;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.sign-up-link {
margin-left: 1px;
font-size: 11px;
text-decoration: underline;
text-decoration-color: teal;
color: teal;
cursor: pointer;
font-weight: 800;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.buttons-container {
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
margin-top: 20px;
gap: 15px;
}
.apple-login-button,
.google-login-button {
border-radius: 20px;
box-sizing: border-box;
padding: 10px 15px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
font-size: 11px;
gap: 5px;
}
.apple-login-button {
background-color: #000;
color: #fff;
border: 2px solid #000;
}
.google-login-button {
border: 2px solid #747474;
}
.apple-icon,
.google-icon {
font-size: 18px;
margin-bottom: 1px;
}