-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcognito-custom-css.css
113 lines (97 loc) · 2.19 KB
/
cognito-custom-css.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
.logo-customizable {
max-width: 50%;
max-height: 30%;
margin: 0 auto;
display: block;
}
.banner-customizable {
padding: 25px 0;
background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
text-align: center;
}
.label-customizable {
font-weight: 500;
color: #333;
}
.legalText-customizable {
color: #888;
font-size: 12px;
line-height: 1.5;
}
.submitButton-customizable {
font-size: 16px;
font-weight: bold;
margin: 20px 0;
height: 45px;
width: 100%;
color: #fff;
background-color: #007bff;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
.submitButton-customizable:hover {
background-color: #0056b3;
}
.errorMessage-customizable {
padding: 10px;
font-size: 14px;
background: #ffe5e5;
border: 2px solid #d9534f;
color: #d9534f;
border-radius: 4px;
}
.inputField-customizable {
width: 100%;
height: 40px;
padding: 8px;
color: #555;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
transition: border-color 0.3s ease;
}
.inputField-customizable:focus {
border-color: #66afe9;
outline: 0;
}
.idpButton-customizable {
height: 45px;
width: 100%;
margin-bottom: 15px;
color: #fff;
background-color: #5bc0de;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
.idpButton-customizable:hover {
background-color: #31b0d5;
}
.socialButton-customizable {
border-radius: 4px;
height: 45px;
margin-bottom: 15px;
padding: 10px;
text-align: center;
width: 100%;
background-color: #f5f5f5;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.redirect-customizable {
text-align: center;
color: #007bff;
margin-top: 10px;
}
.passwordCheck-notValid-customizable {
color: #e74c3c;
}
.passwordCheck-valid-customizable {
color: #2ecc71;
}
.background-customizable {
background-color: #f9f9f9;
padding: 20px;
border-radius: 5px;
}