-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathstyle.css
More file actions
142 lines (126 loc) · 2.91 KB
/
style.css
File metadata and controls
142 lines (126 loc) · 2.91 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* Copyright (c) 2024 by Patricia Ciurescu (https://codepen.io/patriciaa11/pen/RwOzeWb) */
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
*,
:before,
:after {
margin:0;
padding:0;
box-sizing: border-box;
font-family: inherit;
}
body {
font-family: 'Quicksand', sans-serif;
background-image: url(https://raw.githubusercontent.com/CiurescuP/LogIn-Form/main/bg.jpg);
background-repeat: no-repeat;
}
form {
height: 590px;
width:450px;
background-color: rgba(255, 255, 255,0.13);
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
border-radius: 17px;
backdrop-filter: blur(5px);
border: 5px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 0 40px rgba(129, 236, 174, 0.6);
padding: 20px;
}
form *{
font-family: 'Quicksand', sans-serif;
color:#ffffff;
letter-spacing: 1px;
outline: none;
border: none;
}
form h3 {
font-size: 40px;
font-weight: 600;
line-height: 50px;
text-align: center;
}
label {
display: block;
margin-top: 30px;
font-size: 25px;
font-weight: 800;
}
input {
margin-top: 10px;
margin-bottom: 15px;
padding: 11px 15px;
font-size: 14px;
font-weight: 300;
background: rgba(0, 0, 0, 0.22);
border: 2px solid #38363654;
border-radius: 5px;
width: 100%;
}
.social-text {
font-size: 18px;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
color: white;
}
input:hover {
background: #434343;
transition: all 0.50s ease;
}
input:focus {
box-shadow: 0px 2px 2px #0000002b, 0px 5px 10px #00000036;
background: #434343;
}
::placeholder {
color: #e5e5e5;
}
button {
margin-top: 40px;
margin-bottom: 15px;
width: 100%;
background: rgba(0, 0, 0, 0.22);
border: 2px solid #38363654;
border-radius: 5px;
color: #e1e1e1;
padding: 8px 15px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
}
button:hover {
background: #629677;
transition: all 0.50s ease;
}
button:focus {
box-shadow: 0px 0px 0px 2px rgba(103, 110, 103, 0.71);
background: #629677;
}
.social-icons {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.social-icon {
min-height: 40px;
margin-right: 10px;
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
max-width: 40px;
max-height: 40px;
border-radius: 40px;
box-shadow: 0px 4px 8px #0c0b0b00;
transition: all 0.50s ease;
font-size: 20px;
}
.social-icon:hover{
box-shadow: 0px 4px 14px #0000007a;
}
.social-icon:focus {
box-shadow: 0px 0px 0px 2px currentColor;
transform: scale(0.9);
}