EduMentorAI / src /static /css /logout.css
ziadtarek12's picture
Application Code
8472119
Raw
History Blame Contribute Delete
1.22 kB
.auth-container {
min-height: calc(100vh - 80px);
display: flex;
align-items: center;
background: var(--background-light);
}
.auth-card {
background: white;
border-radius: 1rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
max-width: 400px;
width: 100%;
}
.auth-header {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
color: white;
border-radius: 1rem 1rem 0 0;
padding: 2rem;
text-align: center;
}
.auth-body {
padding: 2rem;
text-align: center;
}
.btn-logout {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
border: none;
color: white;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-logout:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
color: white;
}
.btn-cancel {
background: #6b7280;
border: none;
color: white;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
transition: all 0.2s ease;
}
.btn-cancel:hover {
background: #4b5563;
color: white;
}