/* Gmail Manager MCP - Auth Failed Page Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #000;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #333;
}
.container {
background: rgba(15, 15, 15, 0.95);
border-radius: 16px;
border: 1px solid rgba(239, 68, 68, 0.3);
box-shadow:
0 0 40px rgba(239, 68, 68, 0.15),
0 20px 40px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
padding: 32px;
text-align: center;
max-width: 500px;
width: 90%;
animation: slideUp 0.6s ease-out, glowPulse 3s ease-in-out infinite;
backdrop-filter: blur(10px);
}
@keyframes glowPulse {
0%, 100% {
box-shadow:
0 0 40px rgba(239, 68, 68, 0.15),
0 20px 40px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
50% {
box-shadow:
0 0 60px rgba(239, 68, 68, 0.3),
0 20px 40px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.error-icon {
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
}
.error-icon img {
max-height: 300px;
max-width: 100%;
border-radius: 15px;
object-fit: contain;
cursor: pointer;
transition: transform 0.3s ease;
}
.error-icon img:hover {
transform: scale(1.05);
}
.fallback-text {
color: #94a3b8;
font-size: 18px;
margin-top: 20px;
text-align: center;
}
/* GIF loading states */
.gif-loading {
opacity: 0.5;
transition: opacity 0.3s ease;
}
.gif-loaded {
opacity: 1;
}
.gif-hidden {
display: none !important;
}
h1 {
color: #f1f5f9;
margin-bottom: 15px;
font-size: 24px;
font-weight: 600;
}
.message {
color: #94a3b8;
font-size: 14px;
line-height: 1.5;
margin-bottom: 30px;
}
.btn {
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
border: none;
color: white;
padding: 12px 24px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
margin: 8px;
text-decoration: none;
display: inline-block;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
.btn:active {
transform: translateY(0);
}