1 | /**
|
2 | * @license
|
3 | * Copyright Akveo. All Rights Reserved.
|
4 | * Licensed under the MIT License. See License.txt in the project root for license information.
|
5 | */
|
6 |
|
7 | :host {
|
8 | display: block;
|
9 | width: 100%;
|
10 | max-width: 35rem;
|
11 |
|
12 | ::ng-deep {
|
13 | form {
|
14 | width: 100%;
|
15 | }
|
16 |
|
17 | .label {
|
18 | display: block;
|
19 | margin-bottom: 0.5rem;
|
20 | }
|
21 |
|
22 | .forgot-password {
|
23 | text-decoration: none;
|
24 | margin-bottom: 0.5rem;
|
25 | }
|
26 |
|
27 | .caption {
|
28 | margin-top: 0.5rem;
|
29 | }
|
30 |
|
31 | .alert {
|
32 | text-align: center;
|
33 | }
|
34 |
|
35 | .title {
|
36 | margin-top: 0;
|
37 | margin-bottom: 0.75rem;
|
38 | text-align: center;
|
39 | }
|
40 |
|
41 | .sub-title {
|
42 | margin-bottom: 2rem;
|
43 | text-align: center;
|
44 | }
|
45 |
|
46 | .form-control-group {
|
47 | margin-bottom: 2rem;
|
48 | }
|
49 |
|
50 | .form-control-group.accept-group {
|
51 | display: flex;
|
52 | justify-content: space-between;
|
53 | margin: 2rem 0;
|
54 | }
|
55 |
|
56 | .label-with-link {
|
57 | display: flex;
|
58 | justify-content: space-between;
|
59 | }
|
60 |
|
61 | .links {
|
62 | text-align: center;
|
63 | margin-top: 1.75rem;
|
64 |
|
65 | .socials {
|
66 | margin-top: 1.5rem;
|
67 | }
|
68 |
|
69 | .socials a {
|
70 | margin: 0 1rem;
|
71 | text-decoration: none;
|
72 | vertical-align: middle;
|
73 |
|
74 | &.with-icon {
|
75 | font-size: 2rem;
|
76 | }
|
77 | }
|
78 | }
|
79 |
|
80 | .another-action {
|
81 | margin-top: 2rem;
|
82 | text-align: center;
|
83 | }
|
84 |
|
85 | .sign-in-or-up {
|
86 | margin-top: 2rem;
|
87 | display: flex;
|
88 | justify-content: space-between;
|
89 | }
|
90 |
|
91 | nb-alert {
|
92 | .alert-title,
|
93 | .alert-message {
|
94 | margin: 0 0 0.5rem;
|
95 | }
|
96 | .alert-message-list {
|
97 | list-style-type: none;
|
98 | padding: 0;
|
99 | margin: 0;
|
100 | }
|
101 | }
|
102 | }
|
103 | }
|