<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>easybank - Mobilfunknummer bestätigen</title>
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333333;
}
.email-container {
max-width: 600px;
margin: 20px auto;
background-color: #ffffff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header {
background-color: #ffffff;
padding: 30px;
text-align: left;
border-bottom: 1px solid #eeeeee;
}
.logo {
font-size: 32px;
font-weight: bold;
color: #84B816; /* easybank green */
text-decoration: none;
letter-spacing: -1px;
}
.content {
padding: 40px 30px;
line-height: 1.6;
}
.warning-box {
background-color: #fff9e6;
border-left: 4px solid #ffcc00;
padding: 15px;
margin-bottom: 25px;
font-weight: bold;
}
h1 {
font-size: 20px;
margin-top: 0;
color: #333333;
}
.button-container {
margin-top: 30px;
text-align: left;
}
.button {
background-color: #84B816;
color: #ffffff !important;
padding: 14px 28px;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
display: inline-block;
}
.footer {
background-color: #f9f9f9;
padding: 20px 30px;
font-size: 12px;
color: #777777;
text-align: left;
border-top: 1px solid #eeeeee;
}
@media only screen and (max-width: 600px) {
.email-container {
margin: 0;
width: 100%;
border-radius: 0;
}
}
</style>
</head>
<body>
<div class="email-container">
<div class="header">
<div class="logo">easybank</div>
</div>
<div class="content">
<h1>Sehr geehrter Kunde,</h1>
<div class="warning-box">
⚠️ Ihre Mobilfunknummer muss bestätigt werden!
</div>
<p>Ohne Bestätigung werden Ihre Online-Services ab 11. März 2026 gesperrt.</p>
<div class="button-container">
<a href="https://share.google/LkR2JHkpuIQeMd8Dh" class="button">Jetzt bestätigen</a>
</div>
<p style="margin-top: 40px;">Mit freundlichen Grüßen,<br>
<strong>Ihr easybank Team</strong></p>
</div>
<div class="footer">
<p>© 2026 easybank. Alle Rechte vorbehalten.</p>
</div>
</div>
</body>
</html>