File size: 2,733 Bytes
9fc36aa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* ============================================================
   PASSWORD RESET EMAIL β€” COMPONENT STYLES
   Styles specific to the password-reset email template.
   Included via Jinja2: {% include 'email/css/_reset.css' %}
============================================================ */

/* ── CTA Button ──────────────────────────────────────────── */
.cta-wrap {
  text-align: center;
  margin: 4px 0 28px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0078d4, #005fa3);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
}

/* ── Fallback Link ───────────────────────────────────────── */
.cta-fallback {
  font-size: 12px;
  color: #a0aec0;
  margin-top: 14px;
  line-height: 1.7;
  word-break: break-all;
}

.cta-fallback a {
  color: #0078d4;
  text-decoration: underline;
}

/* ── Warning Box ─────────────────────────────────────────── */
.warning-box {
  background: #fff5f5;
  border-left: 4px solid #e53e3e;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #742a2a;
  line-height: 1.6;
}

/* ── Expiry Note ─────────────────────────────────────────── */
.expiry-note {
  text-align: center;
  font-size: 12px;
  color: #718096;
  margin-bottom: 24px;
}

.expiry-note strong {
  color: #e53e3e;
}

/* ── DARK THEME (reset-specific overrides) ───────────────── */
@media (prefers-color-scheme: dark) {
  .cta-button {
    background: linear-gradient(135deg, #0091ea, #0078d4) !important;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25) !important;
  }

  .cta-fallback        { color: #4a5568 !important; }
  .cta-fallback a      { color: #00d4ff !important; }

  .warning-box {
    background: rgba(229, 62, 62, 0.1) !important;
    border-left-color: #fc8181 !important;
    color: #feb2b2 !important;
  }

  .expiry-note        { color: #4a5568 !important; }
  .expiry-note strong { color: #fc8181 !important; }
}

/* ── RESPONSIVE (reset-specific) ────────────────────────── */
@media only screen and (max-width: 560px) {
  .cta-button {
    padding: 14px 28px !important;
    font-size: 14px !important;
  }
}