-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathforms.css
More file actions
48 lines (41 loc) · 905 Bytes
/
forms.css
File metadata and controls
48 lines (41 loc) · 905 Bytes
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
/* =========================================
Form Controls
========================================= */
.form-control:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(79, 195, 247, 0.25);
}
.btn-auth {
padding: 12px;
font-weight: 600;
}
/* =========================================
Auth Page Form Layout
(Login / Register)
========================================= */
.auth-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
background-color: var(--color-background);
}
.auth-card {
max-width: 450px;
width: 100%;
}
.auth-card .card {
border: none;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.auth-header {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}