/* ===============================
   MODERN ERROR PAGE 403
=================================*/

.error-body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.error-modern-container {
    max-width: 600px;
    padding: 40px;
    animation: fadeIn 0.6s ease-in-out;
}

.error-number {
    font-size: 180px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.15;
}

.error-title {
    font-size: 32px;
    font-weight: 600;
    margin-top: -80px;
    margin-bottom: 15px;
}

.error-description {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.error-modern-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: #ffffff;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.error-modern-btn:hover {
    background: #f4f4f4;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
