-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
116 lines (100 loc) · 2.12 KB
/
Copy pathindex.css
File metadata and controls
116 lines (100 loc) · 2.12 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
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(to bottom right, #03001e, #7303c0, #ec38bc, #fdeff9);
font-family: "Inter", sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.login-container {
width: 100%;
max-width: 400px;
height: 500px;
background-image: linear-gradient(to bottom right, #7303c0, #ec38bc);
padding: 50px 40px;
border-radius: 25px;
box-shadow: 0px 7px 70px 7px white;
}
.login-options div img {
height: 30px;
}
.login-heading h2 {
font-size: 25px;
margin-bottom: 10px;
color: white;
}
.login-heading p {
font-size: 15px;
color: white;
margin-bottom: 30px;
font-weight: 500;
}
.form-inputs {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 30px;
}
.form-inputs input {
width: 100%;
padding: 10px;
border-radius: 4px;
border: 1px solid white;
font-size: 12px;
color: white;
background-color: transparent;
}
.login-options-container {
margin-bottom: 30px;
}
.login-options-container p {
font-size: 15px;
color: white;
margin-bottom: 30px;
font-weight: 500;
}
.login-options {
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
}
.login-options div {
padding: 10px 10px;
background-color: transparent;
border-width: 1px;
border-color: white;
border-style: solid;
border-radius: 30px;
}
.form-container button {
width: 100%;
background-image: linear-gradient(to bottom right, #7303c0, #ec38bc);
border-color: white;
border-width: 1px;
border-style: solid;
color: white;
padding: 15px 30px;
border-radius: 25px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
}
.form-inputs input:focus {
border-color: #0366ff;
outline-color: #0366ff;
}
input::placeholder{
color: white;
font-size: 13px;
}
a{
text-decoration: none;
color: white;
}