body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 20px 0;
}

.error-container {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    padding: 40px 20px;
}

.error-icon {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background-color: #e3f2fd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0043CE;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error-message {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.2px;
    color: #141719;
    margin-bottom: 24px;
}

.error-message-en {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.2px;
    color: #141719;
    margin-bottom: 20px;
}

.error-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: center;
    max-width: 500px;
    margin: 12px auto;
    color: #555;
}

.error-description strong {
    color: #141719;
    font-weight: 600;
}

.error-description a {
    color: #0043CE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.error-description a:hover {
    color: #002a85;
    text-decoration: underline;
}

.divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px auto;
}

.shiftmove-logo {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.shiftmove-logo:hover {
    opacity: 1;
}

.shiftmove-logo img {
    max-width: 200px;
    height: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px 0;
    }
    
    .error-container {
        padding: 20px 15px;
    }
    
    .error-message {
        font-size: 24px;
    }
    
    .error-message-en {
        font-size: 22px;
    }
    
    .error-description {
        font-size: 14px;
    }
    
    .error-icon {
        width: 96px;
        height: 96px;
        margin-bottom: 20px;
    }
    
    .divider {
        margin: 30px auto;
    }
    
    .shiftmove-logo {
        margin-top: 30px;
    }
    
    .shiftmove-logo img {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .error-message {
        font-size: 20px;
    }
    
    .error-message-en {
        font-size: 18px;
    }
    
    .error-description {
        font-size: 13px;
        margin: 8px auto;
    }
    
    .divider {
        margin: 25px auto;
    }
    
    .shiftmove-logo img {
        max-width: 140px;
    }
} 