-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (109 loc) · 2.02 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
body {
font-family: Arial, sans-serif;
background-color: #f7f8fa;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
display: flex;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
overflow: hidden;
}
.login-box {
padding: 40px;
border-right: 1px solid #ddd;
}
.login-box h2 {
margin-bottom: 20px;
color: #333;
}
.tabs {
display: flex;
margin-bottom: 20px;
}
.tab {
flex: 1;
padding: 10px;
border: 1px solid #ddd;
cursor: pointer;
text-align: center;
}
.tab.active {
background-color: #f7a800;
color: #fff;
border-color: #f7a800;
}
.login-form {
display: flex;
flex-direction: column;
}
.login-form input {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.forgot-password {
color: #f7a800;
text-decoration: none;
margin-bottom: 20px;
align-self: flex-end;
}
.login-button {
padding: 10px;
background-color: #f7a800;
border: none;
color: #fff;
cursor: pointer;
border-radius: 5px;
margin-bottom: 20px;
}
.alternative-logins {
display: flex;
justify-content: space-between;
}
.google-login, .apple-login {
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
cursor: pointer;
flex: 1;
margin-right: 10px;
}
.apple-login {
margin-right: 0;
}
.promo-box {
padding: 40px;
text-align: center;
}
.promo-box h3 {
margin-bottom: 10px;
color: #f7a800;
}
.promo-box p {
margin-bottom: 20px;
color: #333;
}
.promo-image {
width: 100px;
height: 100px;
margin: 0 auto 20px;
background-image: url('path/to/your/image.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.get-started-button {
padding: 10px 20px;
background-color: #f7a800;
border: none;
color: #fff;
cursor: pointer;
border-radius: 5px;
}